用Regex.Matches方法可以得到同指定正则表达式对应的所有匹配结果。有时,所有匹配结果可能有成千上万个,考虑到性能效率的因素,只需要取出前N个匹配结果。下面的代码演示了做法:
需求:取字符串中前3个数值(相连的数字)。
- Match match = Regex.Match("12ab34de567ab890", @"d+");
- for (int i = 0; i < 3; i++)
- {
- if (match.Success)
- {
- Response.Write(match.Value + "<br/>");
- match = match.NextMatch();
- }
- }
输出:
12
34
567