テキストがあり、正規表現のある文字列を見つけたいです。私の問題は、ここで「&&-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 ..."