正则表达式从java中的字符串中删除空格,逗号,空格?

时间:2012-09-18 04:43:36

标签: java regex

我有一个字符串s“hello,sa n.txt”

但我希望字符串s =“hellosan.txt”没有逗号,没有空格,没有分号,应该在那里 我怎么能在java中使用正则表达式?

3 个答案:

答案 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("[, ;]", ""));