3

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

(-25.368819800291383,130.55809472656256065-58094-05562560629138-05625606299138-052991383,130529138-055291383,130.55809472656256066256.58968620991,41198625209066,41198620906,411986730266,31.05770265,4119805,24.58562567204656,41198556506)

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

如何检索纬度和经度数字?

我在尝试

 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

4 回答 4

2

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

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

于 2012-05-21T13:52:17.413 回答
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();
于 2012-05-21T13:58:47.043 回答
0

试试这个:

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

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

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

将产生 4 个结果,每个结果是纬度、经度形式的一对

于 2012-05-21T13:54:15.503 回答
0

试试这个:

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")
于 2021-08-09T05:32:52.453 回答