Merge pull request #562 from hengyunabc/master
* pull562: Improve StringUtils#trimAllWhitespace
This commit is contained in:
@@ -216,14 +216,12 @@ public abstract class StringUtils {
|
||||
if (!hasLength(str)) {
|
||||
return str;
|
||||
}
|
||||
StringBuilder sb = new StringBuilder(str);
|
||||
int index = 0;
|
||||
while (sb.length() > index) {
|
||||
if (Character.isWhitespace(sb.charAt(index))) {
|
||||
sb.deleteCharAt(index);
|
||||
}
|
||||
else {
|
||||
index++;
|
||||
int len = str.length();
|
||||
StringBuilder sb = new StringBuilder(str.length());
|
||||
for (int i = 0; i < len; i++) {
|
||||
char c = str.charAt(i);
|
||||
if (!Character.isWhitespace(c)) {
|
||||
sb.append(c);
|
||||
}
|
||||
}
|
||||
return sb.toString();
|
||||
|
||||
Reference in New Issue
Block a user