如何创建一个匹配给定字符串长度为2的正则表达式。
示例输入:
givenpercentage@60or•70and 8090
期望的输出:
60 70 80 90
答案 0 :(得分:1)
试试这个:
string x = "givenpercentage@60or•70and 8090";
Regex r = new Regex(@"\d{2}");
foreach(Match m in r.Matches(x))
{
string temp = m.Value;
//Do something
}
\d
- >只有数字
{2}
- >仅限2个数字
输出将是:
60 70 80 90