Character.isSpaceChar

Character.isSpaceChar

Class Overview | Class Members | This Package | All Packages

Syntax
public static boolean isSpaceChar( char ch )
Parameters
ch
the character to be tested.
Returns
true if the character is a space character; false otherwise.
Description
Determines if the specified character is a Unicode space character. A character is considered to be a space character if and only if it is specified to be a space character by the Unicode 2.0 standard (category "Zs", "Zl, or "Zp" in the Unicode specification data file).

See Also
isWhitespace