欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JAVA字符串去空格 回车

程序员文章站 2024-03-22 17:37:34
...
    public static void main(String[] args) {
        String str ="value" ;
        Pattern p = Pattern.compile("\\s*|\t|\r|\n");
        Matcher m = p.matcher(str);
        str = m.replaceAll("");
    }

 

相关标签: JAVA专栏