【发布时间】:2014-02-12 08:17:46
【问题描述】:
代码:
Regex rx = new Regex(@"A(\S");
foreach (Match match in rx.Matches(strinG))
{
int ii = match.Index;
Console.WriteLine(ii);
}
在运行时出错,
system argument exception - " A(\S" not enough )' ".
谁能帮帮我,如何解决这个问题?
【问题讨论】:
标签: c#