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

java匹配中文的正则表达式

时间:2014-08-03 20:19:55      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   java   ar   div   log   c   

 

[\u4E00-\u9FA5]*

 

public static void regxChinese(){  
       // 要匹配的字符串     
       String source = "<span title=‘5 星级酒店‘ class=‘dx dx5‘>";  
       // 将上面要匹配的字符串转换成小写     
      // source = source.toLowerCase();     
       // 匹配的字符串的正则表达式     
       String reg_charset = "<span[^>]*?title=\‘([0-9]*[\\s|\\S]*[\u4E00-\u9FA5]*)\‘[\\s|\\S]*class=\‘[a-z]*[\\s|\\S]*[a-z]*[0-9]*\‘";       

       Pattern p = Pattern.compile(reg_charset);     
       Matcher m = p.matcher(source);     
       while (m.find()) {     
        System.out.println(m.group(1));  
       }  
} 
 public static void regxChinese(){
        // 要匹配的字符串  
        String source = "<span title=‘5 星级酒店‘ class=‘dx dx5‘>";
        // 将上面要匹配的字符串转换成小写  
       // source = source.toLowerCase();  
        // 匹配的字符串的正则表达式  
        String reg_charset = "<span[^>]*?title=\‘([0-9]*[\\s|\\S]*[\u4E00-\u9FA5]*)\‘[\\s|\\S]*class=\‘[a-z]*[\\s|\\S]*[a-z]*[0-9]*\‘";    

        Pattern p = Pattern.compile(reg_charset);  
        Matcher m = p.matcher(source);  
        while (m.find()) {  
         System.out.println(m.group(1));
        }
 }

java匹配中文的正则表达式,布布扣,bubuko.com

java匹配中文的正则表达式

标签:style   blog   color   java   ar   div   log   c   

原文地址:http://www.cnblogs.com/taoweiji/p/3866040.html

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