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.
この文字列の正規表現の書き方を教えてもらえますか?
TRY MOVIE YES [Bat2man WIN]
([でバックスラッシュを試しましたが、機能しません)
ありがとう
角かっこを間違ってエスケープしているようです:
これを試して:
string regexTemplate = @"TRY MOVIE YES \[Bat2man WIN\]";
また
string regexTemplate = "TRY MOVIE YES \\[Bat2man WIN\\]";