大家都知道,java中String有个trim()能够去掉一个字符串的前后空格。
但是trim()只能去掉字符串中前后的半角空格,而无法去掉全角空格。
去掉全角空格需要在trim()方法的基础上加上一些判断。
textContent = textContent.trim();
while (textContent.startsWith(" ")) {
textContent = textContent.substring(1, textContent.length()).trim();
}
while (textContent.endsWith(" ")) {
textContent = textContent.substring(0, textContent.length() - 1).trim();
}
来源:https://www.cnblogs.com/ccrenxiang/archive/2012/07/16/2593940.html