public class Test{
public static void main(String[] args){
//可以先把数值转换为字符串,在进行切割
String str = "xxx.0";
String newstr = str.substring(0,str.lastIndexOf("."));
System.out.println(newstr);
}
}
12-04
668
06-08
1万+
09-13
1962
04-18
8511