isWhitespace() in java

Java Programming Language / Character Class in java

895

Program:

public class CharisWhitespaceMethod {

   public static void main(String args[]) {
         System.out.println(Character.isWhitespace('C'));
         System.out.println(Character.isWhitespace(' '));
         System.out.println(Character.isWhitespace('\n'));
         System.out.println(Character.isWhitespace('\t'));
      }
}

/*
Determines whether the specified char value is white space.
*/

Output:

false
true
true
true
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.