如何在java中提取与regex匹配的上一个或下一个字符串?

时间:2018-03-08 08:47:22

标签: java regex

final String str = "I want to get previous or next string";
final Matcher matcher = Pattern.compile("or").matcher(str);
if(matcher.find()){
System.out.println(str.substring(matcher.end()).trim());
}

我想得到:"之前"或" next"字符串

output: next string

1 个答案:

答案 0 :(得分:-1)

对正则表达式进行分组并迭代数学家类中的组。谷歌正则表达式在java中进行分组和迭代。得到样本然后去做。