正则表达式,用于获取括号内的值

时间:2014-06-11 11:50:25

标签: java regex

下面是我想要分隔内括号值的字符串值

US Records (100)
Foreign Records (243)

在上面的字符串中,我想将计数分开并存储到另一个字符串中 100,243使用正则表达式。

1 个答案:

答案 0 :(得分:3)

此代码schold为您提供结果:

String s = new String("US Records (100)");

Pattern p = Pattern.compile("\\((\\d+)\\)");

Matcher m = p.matcher(s);

m.find();

System.out.println(m.group(1));