1

我正在研究协调转换Java中的APP。

我想将 MGRS 坐标转换为小数,如52SCG7250042500or 5SDG7000050000

我想分离或提取上述坐标,如

52 S CG 72500 42500, 5 S DG 70000 50000...

我怎样才能通过使用正则表达式来做到这一点?

这是我的尝试,但它只返回数字:

String aaa = "52SCG7250013500";
Pattern p = Pattern.compile("-?\\d+");
//Pattern p1 = Pattern.compile("[a-zA-Z0-9]");
Matcher m = p.matcher(aaa);
//Matcher m1 = p1.matcher(aaa);
while (m.find()) {
    System.out.println(m.group());
    //System.out.println(m1.group());
}
4

1 回答 1

1

下面的代码可以正常工作

    Pattern p = Pattern.compile("-?\\d+");
    Pattern p1 = Pattern.compile("[a-zA-Z]");

    Matcher m = p.matcher(mgrs);
    Matcher m1 = p1.matcher(mgrs);


    //initializing variables

    while (m.find()) {
    System.out.println(m.group());
    }//end while

while (m1.find()) {
    System.out.println(m1.group());
    }//end while
于 2013-09-15T04:31:47.870 回答