我的问题很简单,为什么我们不能删除字符串中的空格,如果它是数字格式?
示例:
public static void main(String[] args) {
long num=12366271;
String b = "this is an example";
NumberFormat format = NumberFormat.getInstance();
String a= format.format(num);
System.out.println(a);
System.out.println(a.replaceAll(" ",""));
System.out.println(b.replaceAll(" ",""));
}
使用简单replace
删除传票中的空格,而数字格式则不会。