trim():去掉字符串首尾的空格。
执行结果:a: hello world ,false
a:hello world,true
str.replace(" ","");去掉所有空格,包括首尾、中间
String str=" hell o wo rld ";
String str2=str.replaceAll();
System.out.println(str2);
执行结果:
hello world
trim():去掉字符串首尾的空格。
执行结果:a:hello world,true
str.replace(" ","");去掉所有空格,包括首尾、中间
String str=" hell o wo rld ";
String str2=str.replaceAll();
System.out.println(str2);
执行结果:
hello world