用来删除字符串两端的空白字符并返回,trim方法并不影响原来的字符串本身,它返回的是一个新的字符串

String a = "  Hello World  ";

String b = a.trim();

b就变成"Hello World"

相关文章: