Scanner a = new Scanner(System.in);
String i = "11,111";
System.out.print("Enter first number a:");
String b = a.next();
我想在用户提供时显示不带逗号的数字
答案 0 :(得分:2)
您可以简单地使用String::replace
System.out.println (i.replace (",", ""));
答案 1 :(得分:0)
全部替换将解决问题。
String i = "11,000";
System.out.println (i.replaceAll(",", ""));
答案 2 :(得分:-1)
.replace(,);
如果要更改已经提到的字符串“ i”,请键入
System.out.println(i.replace(“,”,“”));
如果您要更改用户“ b”收到的输入,请键入
System.out.println(b.replace(“,”,“”));