我有一个字符串s“hello,sa n.txt”
但我希望字符串s =“hellosan.txt”没有逗号,没有空格,没有分号,应该在那里 我怎么能在java中使用正则表达式?
答案 0 :(得分:6)
String input = "hello,sa n.txt";
String clean = input.replaceAll("[, ;]", ""); // replace any of ", ;" with "nothing"
答案 1 :(得分:2)
尝试使用此替换字符串中的所有逗号,分号和空格:
replaceAll("[,;\\s]", "");
答案 2 :(得分:1)
System.out.println("hello,sa n.txt".replaceAll("[, ;]", ""));