String的trim()可以去掉字符串的前导和后继字符串,即去掉字符串前面和后面的空格。
eg:String userName = " good man ";
System.out.println(userName.length()); // 12
userName = userName.trim();
System.out.println(userName.length()); // 8
System.out.println(userName); // good man
本文共 293 字,大约阅读时间需要 1 分钟。
String的trim()可以去掉字符串的前导和后继字符串,即去掉字符串前面和后面的空格。
eg:String userName = " good man ";
System.out.println(userName.length()); // 12
userName = userName.trim();
System.out.println(userName.length()); // 8
System.out.println(userName); // good man
转载于:https://www.cnblogs.com/sunfenqing/p/7457567.html