文字处理工具合集

正则匹配去除空格

        Pattern pattern = compile("[\\s\\p{Zs}]");
        Matcher re = pattern.matcher(s);
        String s= re.replaceAll("");

只使用使用

 replace(char oldChar, char newChar)

或者

replaceAll(char oldChar, char newChar)

是达不到想要的效果

你可能感兴趣的:(文字处理工具合集)