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.
次の正規表現をエスケープするにはどうすればよいですか?
Match match = Regex.Match(response.Content, @"([0-9]+)","display");
二重引用符をエスケープしようとしましたが、カンマが原因で、VS は「表示」が Match メソッドの 3 番目の引数であると認識します。
Match match = Regex.Match(response.Content, @"([0-9]+)"",""display");
?