我正在研究协调转换Java中的APP。
我想将 MGRS 坐标转换为小数,如52SCG7250042500
or 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());
}