如何使用RegEx替换除双引号之外的所有标点符号

时间:2012-03-26 22:40:23

标签: java regex string parsing

我正在尝试进行一些字符串清理。

我想删除字符串双引号外的所有标点符号。

下面的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。但是,这对我没有帮助。

1 个答案:

答案 0 :(得分:9)

您可以使用negative lookahead

(?!")\\p{punct}

Rubular demo

Java example

String string = ".\"'";
System.out.println(string.replaceAll("(?!\")\\p{Punct}", ""));