在Java中,可以使用replaceAll()
方法来替换字符串中的字符。例如,要将字符串中的所有空格替换为逗号,可以使用以下代码:
String str = "Hello World";
String newStr = str.replaceAll(" ", ",");
System.out.println(newStr); // Output: Hello,World
另外,如果只想替换字符串中的第一个匹配项,可以使用replaceFirst()
方法。例如,要将字符串中第一个空格替换为逗号,可以使用以下代码:
String str = "Hello World";
String newStr = str.replaceFirst(" ", ",");
System.out.println(newStr); // Output: Hello,World