Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のパターンに一致する正規表現を作成する必要があります。大きなファイルを読んでいて、パターンに一致する文字列を取得する必要があります。基本的に、間の任意の文字列AND++(*)
AND++(*)
AND++("adventure"), AND++("Regular"+AND+"Show"), AND++("any"+AND+"given"+AND+"sunday") , AND++("the"+AND+"greatest"+AND+"story"+AND+"ever"+AND+"told")
(?<=AND\+\+\().*?(?=\))
AND++(が前にあり、後にある場合、引用に含まれるすべてをキャプチャします)。
AND++(
)
(?<=AND\+\+\()肯定的な後読みです
(?<=AND\+\+\()
(?=\))前向きな先読みです
(?=\))
編集
試合ごとに次のようにします。
match = match.Replace("\"","").Replace("+AND+"," ");