The java.util.Character.isWhitespace method is used to determine whether a specified character is considered whitespace according to the Unicode Standard. White space characters include spaces, tabs, newline characters, carriage returns, and other similar characters that are used to separate words and elements in a text. This method returns true if the specified character is a whitespace character, and false otherwise.
Java Character.isWhitespace - 30 examples found. These are the top rated real world Java examples of java.util.Character.isWhitespace extracted from open source projects. You can rate examples to help us improve the quality of examples.