我有一个以_ [数字]结尾的字符串,例如_1 _12等等。
我正在寻找一个正则表达式来提取这个数字
答案 0 :(得分:27)
试试这个:
(\d+)$
以下是如何使用它的示例:
using System;
using System.Text.RegularExpressions;
class Program
{
static void Main()
{
Regex regex = new Regex(@"(\d+)$",
RegexOptions.Compiled |
RegexOptions.CultureInvariant);
Match match = regex.Match("_1_12");
if (match.Success)
Console.WriteLine(match.Groups[1].Value);
}
}
答案 1 :(得分:1)
尝试
_(\d+)$