Friday, April 19, 2019

java - Trim and Lowercase




Every time I try doing the trim method and the lowercase method it doesn't show the way I want it.



sentence.trim();
sentence.toLowerCase();
System.out.println("\"" + sentence + "\"" + " ---> ");


For example, if I input " Hello World! ", it will print out " Hello World! " and not use any of the methods.



Answer



You need to store the value returned:



sentence = sentence.trim().toLowerCase();

No comments:

Post a Comment

plot explanation - Why did Peaches' mom hang on the tree? - Movies & TV

In the middle of the movie Ice Age: Continental Drift Peaches' mom asked Peaches to go to sleep. Then, she hung on the tree. This parti...