字符串空白清理不是修剪[重复]
Posted
技术标签:
【中文标题】字符串空白清理不是修剪[重复]【英文标题】:String whitespace clean up that is not trim [duplicate] 【发布时间】:2014-11-28 13:50:58 【问题描述】:所以我一直在看这里,我可以找到很多解决方案,它们要么完全删除所有空白,要么只删除空格,或者只删除标签。基本上我需要/想要的是一种获取字符串的方法,然后将所有双空格+或制表符转换为单个空格。即
String temp = "This is a test for strings";
String result = "This is a test for strings";
有什么想法吗?可能的 java 库方法?
【问题讨论】:
【参考方案1】:使用String.replaceAll
:
String result = temp.replaceAll("\\s+", " ");
其中\\s+
代表多个空格字符。
【讨论】:
两位谢谢! 1. 谢谢,老实说,这正是我想要的。 2.不开玩笑【参考方案2】:您可以将regExp
与#replaceAll
方法一起使用,但您可以首先使用 trim
删除前导和尾随空格。
String temp = "This is a test for strings";
String result = temp.replaceAll("\\s+", " ");
这里的\\s+
是regExp
,意思是一个或多个空格将被replaceAll
方法替换为单个空格。
【讨论】:
【参考方案3】:试试这个:
String temp = "This is a test for strings";
String result = temp.replaceAll("\\s+", " "));
【讨论】:
以上是关于字符串空白清理不是修剪[重复]的主要内容,如果未能解决你的问题,请参考以下文章