当前位置: 代码迷 >> J2SE >> 正则表达式。婚配 中文跟(中文
  详细解决方案

正则表达式。婚配 中文跟(中文

热度:91   发布时间:2016-04-23 21:59:14.0
正则表达式。。匹配 中文跟(中文

  
         Pattern p = Pattern.compile("[\u4e00-\u9fa5]"); 
     Matcher m = p.matcher("AA中C国(中国)(人BB"); 
         while (m.find()) { 
                                System.out.println(s0); 
                        } 
现在输出 中国中国人

我想输出中国(中国)(人 要怎样改正则表达式

------解决方案--------------------
Pattern p = Pattern.compile("[\u4e00-\u9fa5()]");
Matcher m = p.matcher("AA中C国(中国)(人BB");
while (m.find()) {
System.out.print(m.group());
}