public class TestUserSort {
public static void main(String[] args){
String sorts = "{'t.abvc':'asc'}";
String sortss [] = sorts.split(":");
String lastSorts = sortss[sortss.length-1];
String sort = lastSorts.substring(1, lastSorts.lastIndexOf("'"));
String firstSort = sortss[0];
System.out.println("点的位置:"+firstSort.indexOf("."));
String firstSot ="";
if(firstSort.indexOf(".")>0){
firstSot = firstSort.substring(firstSort.indexOf(".")+1,firstSort.length()-1);
}else{
firstSot = firstSort.substring(firstSort.indexOf("'")+1,firstSort.length()-1);
}
System.out.println(firstSot+"------------"+sort);
}
}
public static void main(String[] args){
String sorts = "{'t.abvc':'asc'}";
String sortss [] = sorts.split(":");
String lastSorts = sortss[sortss.length-1];
String sort = lastSorts.substring(1, lastSorts.lastIndexOf("'"));
String firstSort = sortss[0];
System.out.println("点的位置:"+firstSort.indexOf("."));
String firstSot ="";
if(firstSort.indexOf(".")>0){
firstSot = firstSort.substring(firstSort.indexOf(".")+1,firstSort.length()-1);
}else{
firstSot = firstSort.substring(firstSort.indexOf("'")+1,firstSort.length()-1);
}
System.out.println(firstSot+"------------"+sort);
}
}