> As i know a String can contain not only the visible characters, but also
> some invisible signs, like the tabulator ('\t'), newline ('\n'),
> carriage return ('\r').
> My question is: are there any other characters expect the above?
There are a large number Unicode characters that may qualify, but
unfortunately "invisible sign" is not a defined technical term and it's
difficult to guess what you would or would not include under that term.
Instead, perhaps you should look over the Unicode concept of
"categories" and decide which ones you are interested in. A complete
list is available at:
http://www.dpawson.co.uk/xsl/rev2/UnicodeCategories.html
Initially, it looks like you'll be interested in all the Z categories,
and perhaps some or all of the C categories as well. See also
Character.getType, which lets you determine which of those categories a
specific Unicode code point belongs to.

Signature
www.designacourse.com
The Easiest Way To Train Anyone... Anywhere.
Chris Smith - Lead Software Developer/Technical Trainer
MindIQ Corporation
Daniel Tahin - 11 Mar 2005 11:40 GMT
Thanx Chris!
The site, you pointed to, is very good...
Chris Smith schrieb:
>>As i know a String can contain not only the visible characters, but also
>>some invisible signs, like the tabulator ('\t'), newline ('\n'),
[quoted text clipped - 15 lines]
> Character.getType, which lets you determine which of those categories a
> specific Unicode code point belongs to.