纬度经度对的正则表达式

时间:2012-05-21 13:48:28

标签: c# regex

我在谷歌地图上绘制一条线,而不是创建一个字符串,如:

  

( - 25.368819800291383,130.55809472656256)( - 25.507716386730266,131.05797265625006)( - 24.89637614190406,131.49193261718756)( - 24.582068950590272,130.31090234375006)

第一个值是纬度,第二个值是经度。我为该字符串分配了一个隐藏字段值,以便我可以在服务器上访问它。

如何检索纬度和经度数?

我在尝试

 Match match = Regex.Match(points, @"(^(0|(-(((0|[1-9]\d*)\.\d+)|([1-9]\d*))))$,^(0|(-(((0|[1-9]\d*)\.\d+)|([1-9]\d*))))$)*", RegexOptions.IgnoreCase);

4 个答案:

答案 0 :(得分:2)

使用此:^(\-?\d+(\.\d+)?),\s*(\-?\d+(\.\d+)?)$(取自here)。正则表达式的一个问题是您使用^$两次。这些表示字符串的开头和结尾,因此在您的情况下,正则表达式永远不会起作用。

上面的正则表达式应该提取数字,并通过使用组来使它们可用。

答案 1 :(得分:1)

试一试

\((?<lat>[-\d.]+),(?<long>[-\d.]+)\)

我喜欢在这里使用命名组。要只获得纬度使用

    Regex regexObj = new Regex(@"\((?<lat>[-\d.]+),(?<long>[-\d.]+)\)");
    Match matchResult = regexObj.Match(subjectString);
    while (matchResult.Success) {
        Console.WriteLine(matchResult.Groups["lat"].Value));
        matchResult = matchResult.NextMatch();

答案 2 :(得分:0)

试试这个:

Match match = Regex.Match(points, @"(-?\d+\.\d+)+", RegexOptions.IgnoreCase);

对于您的输入,它将产生8个结果,每个结果=经度或纬度

Match match = Regex.Match(points, @"((-?\d+\.\d+)+,?){2}", RegexOptions.IgnoreCase);

将产生4个结果,每个结果是一对纬度,经度

答案 3 :(得分:-1)

试试这个:

import re
p = re.compile('([+-]*\d*[\.]*\d*), ([+-]*\d*[\.]*\d*)')
t = int(input())
for i in range(t):
    try:
        z = str(input())
        z = z[1:len(z)-1]
        zz = re.findall(p, z)
        zz = zz[0]
        x = zz[0]
        y = zz[1]
        if(x[0] == '+' or x[0] == '-'):
            x = x[1:]
        if(y[0] == '+' or y[0] == '-'):
            y = y[1:]
        if(x[len(x)-1] == '.' or y[len(y)-1] == '.'):
            print("Invalid")
            continue
        if((len(x) > 1 and x[0] == '0' and x[1] != '.') or (len(y) > 1 and y[0] == '0' and y[1] != '.')):
            print("Invalid")
            continue
        x = float(x)
        y = float(y)
        if(x >= -90.0 and x <= 90.0 and y >= -180.0 and y <= 180.0):
            print("Valid")
        else:
            print("Invalid")
    except:
        print("Invalid")