利用正则表达式匹配所有符合条件的子串

思路

利用Matcher对象的find()方法与while循环结合,匹配到字符串中所有与正则匹配的子串。在循环体中利用Matcher对象的group()方法拿到当前匹配到的子字符串。

示例代码

@Test
public void testRegexp() {
    String s = "Hi Job,(213,456) and (AAA,/* notes */BBB) ,()oooo(abc,bcd,efg);";
    if (s != null && !"".equals(s)) {
        String regex = "\\([\\w\\/\\*\\s,]*\\)";
        Pattern pattern = Pattern.compile(regex);
        Matcher matcher = pattern.matcher(s);
        while (matcher.find()) {
            String matcherString = matcher.group();
            System.out.println(matcherString);
        }
    }
}

你可能感兴趣的:(Java)