我需要在一个字符串中存储多个正则表达式,然后将其检索并解析为原始正则表达式。我应该使用哪个分隔符来分隔这些正则表达式。
答案 0 :(得分:1)
下面可能看起来像sudo-code:
String Regex="(regexOne)"+"(regexTwo)";
Pattern pt=Pattern.compile(Regex);
String line
Matcher match=pt.matcher(line);
if(match.find()){
String matchedWithFirstRegex=match.group(1);
String matchedWithSecondRegex=match.group(2);
}