字符串
The method according to claims 1 to 6
The method of claim 1,
我的正则表达式
\\bclaim\\s+(\\d+)
it finding the digits after the word claim
如果单词claim
找到单词后面的数字
如果单词claims
未找到
所以我改变了我的正则表达式
\\bclaim(?=s)\\s+(\\d+)
但它没有找到索赔 让我知道任何其他可能性
答案 0 :(得分:4)
答案 1 :(得分:0)
嘿,只使用以下正则表达式,
String pattern = "\\bclaims?\\s+(\\d+)";
Pattern r = Pattern.compile(pattern);
Matcher m = r.matcher(str);
if (m.find( ))
System.out.println(m.group());
输出:
claims 1
claim 1