这个不知道是否符合你的胃口- public class Test
- {
- public static void main(String[] args)
- {
- StringBuilder sb=new StringBuilder("i love this game ! ");
-
- String str=sb.toString().replaceAll(" ","");//将所有空格去掉
- sb.delete(0,sb.length());//将StringBuilder清空
- sb.append(str);//将去掉空格的字符串重新添加到StringBuilder中
- System.out.println(sb);//打印测试
-
- }
- }
复制代码 |