我正在研究协调转换java中的APP。
我想将MGRS坐标转换为52SCG7250042500
或5SDG7000050000
等小数。
我想分离或提取上面的坐标,如
52 S CG 72500 42500, 5 S DG 70000 50000...
如何使用Regex表达式执行此操作?
这是我的尝试,但它只返回数字:
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());
}
答案 0 :(得分: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