码迷,mamicode.com
首页 > 编程语言 > 详细

Java 特殊字符正则替换

时间:2020-07-21 14:03:52      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:replace   print   match   void   特殊字符   style   acea   mat   row   

 

 

    @Test
    public void testRegex() throws Exception {
                String str="das:! $%#*(*(";
                String regEx = "[`~!@#$%^&*()+=|{}‘:;‘\\[\\].<>/?~!@#¥%……&*()——+|{}【】‘;:”“’。,、?]|\n|\r|\t";
                Pattern p = Pattern.compile(regEx);
                Matcher m = p.matcher(str);
                boolean isfind = m.find();
                System.err.println(isfind);
                 //regex 
                String replaceAll = str.replaceAll(regEx, "");
                 System.out.println(replaceAll);
     }

 

Java 特殊字符正则替换

标签:replace   print   match   void   特殊字符   style   acea   mat   row   

原文地址:https://www.cnblogs.com/lshan/p/13354335.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!