我正在尝试进行一些字符串清理。
我想删除字符串除双引号外的所有标点符号。
下面的trimPunctuation()函数可以很好地删除字符串中的所有标点符号。
有没有人知道删除所有标点符号的方法,但双引号。
private String trimPunctuation( String string, boolean onlyOnce )
{
if ( onlyOnce )
{
string = string.replaceAll( "\\p{Punct}$", "" );
string = string.replaceAll( "^\\p{Punct}", "" );
}
else
{
string = string.replaceAll( "\\p{Punct}+$", "" );
string = string.replaceAll( "^\\p{Punct}+", "" );
}
return string.trim();
}
有关标点符号unicode类的更多信息可以找到here。但是,这对我没有帮助。
答案 0 :(得分:9)
您可以使用negative lookahead。
(?!")\\p{punct}
String string = ".\"'";
System.out.println(string.replaceAll("(?!\")\\p{Punct}", ""));