字符串的delimeter chararecter由多个正则表达式组成

时间:2017-05-31 06:58:38

标签: java regex delimiter

我需要在一个字符串中存储多个正则表达式,然后将其检索并解析为原始正则表达式。我应该使用哪个分隔符来分隔这些正则表达式。

1 个答案:

答案 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);

     }