码迷,mamicode.com
首页 > 其他好文 > 详细

字符串左右空格的处理

时间:2018-09-05 00:55:51      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:.com   ref   bst   substring   string   substr   com   左右   abc   

java中String有个trim()能够去掉一个字符串的前后空格。
但是trim()只能去掉字符串中前后的半角空格,而无法去掉全角空格
去掉全角空格需要在trim()方法的基础上加上一些判断。
String textContent ="abctest ";
textContent = textContent.trim();
while (textContent.startsWith(" ")) {//这里判断是不是全角空格
textContent = textContent.substring(1, textContent.length()).trim();
}
while (textContent.endsWith(" ")) {
textContent = textContent.substring(0, textContent.length() - 1).trim();
}

字符串左右空格的处理

标签:.com   ref   bst   substring   string   substr   com   左右   abc   

原文地址:https://www.cnblogs.com/justlove/p/9589078.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!