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
答案 0 :(得分:-1)
对正则表达式进行分组并迭代数学家类中的组。谷歌正则表达式在java中进行分组和迭代。得到样本然后去做。