我有一段文字,想用正则表达式查找一些字符串。我的问题是我不知道如何在这里制作“&&-and”。
我有这样的文字:
AB " something is here;
and here...
";
...
AB "new line
continues ... ";
我想找到所有以“;”结尾的AB
我用于“;”的代码 :
var matches = Regex.Matches(tmp, "(AB) ([^;]*);", RegexOptions.Singleline);
但我怎么能做 "(AB) ([^(\";)]*)\";"
或只是"(AB) ([^(\"&&;)]*)(\"&&;")
?
我想拥有:
AB
" something is here;
and here ...
"
AB
"new line
continues ..."