C#正则表达式匹配字符串末尾的数字

时间:2009-07-09 13:10:30

标签: c#

我有一个以_ [数字]结尾的字符串,例如_1 _12等等。

我正在寻找一个正则表达式来提取这个数字

2 个答案:

答案 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+)$