如何在C35;中使用正则表达式检索选定的文本?
我正在寻找与此Perl代码等效的C代码:

$indexVal = 0;
if($string =~ /Index: (\d*)/){$indexVal = $1;}

最佳答案

int indexVal = 0;
Regex re = new Regex(@"Index: (\d*)")
Match m = re.Match(s)

if(m.Success)
  indexVal = int.TryParse(m.Groups[1].toString());

我可能把组号弄错了,但你应该能从这里查出来。

09-05 12:58