码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2014-10-03 05:11:24      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   java   for   sp   

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

 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,布布扣

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

标签:style   blog   color   io   os   ar   java   for   sp   

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

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