需要帮助Regex从字符串中提取邮政编码

时间:2009-08-26 14:52:09

标签: c# regex

我需要从字符串中提取邮政编码。字符串如下所示:

Sandviksveien 184, 1300 Sandvika

如何使用正则表达式提取邮政编码? 在上面的字符串中,邮政编码为1300。

我在路上试过这样的事情:

Regex pattern = new Regex(", [0..9]{4} ");
string str = "Sandviksveien 184, 1300 Sandvika";
string[] substring = pattern.Split(str);
lblMigrate.Text = substring[1].ToString();

但这不起作用。

3 个答案:

答案 0 :(得分:6)

这应该是诀窍:

  

,\s(\d{4})

以下是如何使用它的简短示例:

using System;
using System.Text.RegularExpressions;

class Test
{
    static void Main()
    {
        String input = "Sandviksveien 184, 1300 Sandvika";

        Regex regex = new Regex(@",\s(\d{4})",
            RegexOptions.Compiled |
            RegexOptions.CultureInvariant);

        Match match = regex.Match(input);

        if (match.Success)
            Console.WriteLine(match.Groups[1].Value);
    }
}

答案 1 :(得分:2)

我认为您正在寻找可以使用RegExes进行的分组 ...

举个例子......

Regex.Match(input, ", (?<zipcode>[0..9]{4}) ").Groups["zipcode"].Value;

你可能需要稍微修改一下,因为我要离开记忆......

答案 2 :(得分:1)

试试这个:

var strs = new List<string> { 
"ffsf 324, 3480 hello",
"abcd 123, 1234 hello",
"abcd 124, 1235 hello",
"abcd 125, 1235 hello"
};

Regex r = new Regex(@",\s\d{4}");

foreach (var item in strs)
{
    var m = r.Match(item);
    if (m.Success)
    {
       Console.WriteLine("Found: {0} in string {1}", m.Value.Substring(2), item);
    }
}