下面是我想要分隔内括号值的字符串值
US Records (100)
Foreign Records (243)
在上面的字符串中,我想将计数分开并存储到另一个字符串中 100,243使用正则表达式。
答案 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));