按照字串中數字大小利用Comparator排序
按照字串中的數字大小利用Comparator進行排序,沒有數字的排最後,這裡只做了初步的正則,只判斷第一個出現的數字,作為一個例子
其中包含純數字以及字母,漢字混編的字串
public void Sorter() {
List<String> strs = new ArrayList<String>();strs.add("方式看路");
strs.add("20路");
strs.add("也292路");
strs.add("2(1)路"); //2(1)和2未做排序
strs.add("2路");
strs.add("1路");
strs.add("Y1路");
System.out.println(strs);
// 用了一個Comparetor
Comparator<String> com = new Comparator<String>() {
public int compare(String o1, String o2) {
// reture 0 則不改變位置,reture 1或者其他正數,升序, return -1或其他負數,降序
return 0;
}
String num1 = "0";
String num2 = "0";
Pattern p = Pattern.compile("[0-9]+");
Matcher m = p.matcher(o1);
if(m.find()){
MatchResult mr=m.toMatchResult();
num1 = mr.group(0);
}else {
return -1;
}
Pattern p1 = Pattern.compile("[0-9]+
Matcher m1 = p1.matcher(o2);
if(m1.find()){
MatchResult mr=m1.toMatchResult();
num2 = mr.group(0);
}else {
return -1;
}
return Integer.parseInt(num1) - Integer.parseInt(num2);
}
};
Collections.sort(strs, com);
System.out.println(strs);
}