标签: regex c#-4.0
var searchIn = "The quick brown fox jump over the 3 lazy dogs";
我想从这个字符串中得到3,只要它们后跟“懒狗” 如果数字是13,则为13
我找到的唯一方法就是这样做......
var x = Regex.Match(Regex.Match(searchIn, @"\d{1,2} lazy dogs").Value, @"\d{1,2}");
有更好的方法吗?