i 文字列 s "hello,sa n.txt" があります
しかし、文字列 s="hellosan.txt" が必要です カンマもスペースもセミコロンもありません 正規表現を使用してJavaでこれを行うにはどうすればよいですか?
String input = "hello,sa n.txt";
String clean = input.replaceAll("[, ;]", ""); // replace any of ", ;" with "nothing"
これを試して、文字列内のすべてのコンマ、セミコロン、およびスペースを置き換えてください。
replaceAll("[,;\\s]", "");
System.out.println("hello,sa n.txt".replaceAll("[, ;]", ""));