Manipulation

String str = "Abcd";
str.toUpperCase();     // ABCD
str.toLowerCase();     // abcd
str.concat("#");       // Abcd#
str.replace("b", "-"); // A-cd
" abc ".trim();       // abc
"ab".toCharArray();    // {'a', 'b'}
Comments