在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