Trim and Lowercase

Tho*_*ied 1 java methods trim 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 + "\"" + " ---> ");
Run Code Online (Sandbox Code Playgroud)

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

Ame*_*bsa 7

You need to store the value returned:

sentence = sentence.trim().toLowerCase();
Run Code Online (Sandbox Code Playgroud)