英文:
How to remove spaces before and after the comma in java
问题
我遇到了输入不匹配的错误。
使用了正则表达式("//s*,//s*",","),但它不起作用。
英文:
I have an input mismatch error.
used regular expression ("//s*,//s*",",") but it doesn't work.
答案1
得分: 0
你应该使用\\
而不是//
。
String input = "a , b , c , d";
String output = input.replaceAll("\\s*,\\s*", ",");
System.out.println(output); // 输出: "a,b,c,d"
英文:
You should use \\
instead of //
String input = "a , b , c , d";
String output = input.replaceAll("\\s*,\\s*", ",");
System.out.println(output); // output: "a,b,c,d"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论