0

如何转义以下正则表达式?

Match match = Regex.Match(response.Content, @"([0-9]+)","display");

我尝试转义双引号,但逗号导致 VS 认为“显示”是 Match 方法的第三个参数。

4

2 回答 2

3
Match match = Regex.Match(response.Content, @"([0-9]+)"",""display");

?

于 2013-08-10T04:48:37.873 回答
0

VS 是对的。Match 方法被重载,但不接受 3 个字符串作为参数。
Match(String)
Match(String, Int32)
Match(String, String)
Match(String, Int32, Int32)
Match(String, String, RegexOptions)
Match(String, String, RegexOptions, TimeSpan)
希望这会有所帮助。

于 2013-08-10T06:41:44.250 回答