In Java Which of these method of class String is used to remove leading and trailing whitespace? code example
Example: how to strip trailing spaces in java
String str = new String(" apples ");
str.trim(); // result is a nes string "apple"
String str = new String(" apples ");
str.trim(); // result is a nes string "apple"