首页 > 其他 > 详细

利用正则表达式提取括号内内容

时间:2014-10-03 04:24:44      阅读:353      评论:0      收藏:0      [点我收藏+]

比如现在要提取  中华人们共和国,简称(中国) 这句话中括号里的“中国”

 1 import java.util.regex.Matcher;
 2 import java.util.regex.Pattern;
 3 public class  Test
 4 {
 5     public static void main(String[] args)
 6     {
 7         String str ="中华人民共和国,简称(中国)。";
 8         Matcher mat = Pattern.compile("(?<=\\()(\\S+)(?=\\))").matcher(str);//此处是中文输入的()
 9         while(mat.find()){
10             System.out.println(mat.group());
11         }
12     }
13 }
14         

最后附一下用到的零宽断言:

bubuko.com,布布扣

利用正则表达式提取括号内内容

原文:http://www.cnblogs.com/manliu/p/4004696.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!