在Java中,可以使用replace()
方法来替换字符串中的字符。replace()
方法接受两个参数:要替换的字符和替换后的字符。以下是一个示例:
public class Main {
public static void main(String[] args) {
String str = "Hello World";
String newStr = str.replace('o', 'x');
System.out.println(newStr);
}
}
输出结果为:
Hellx Wxrld
在上面的示例中,replace('o', 'x')
将字符串中的所有字符'o'
替换为'x'
。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: java中args和arge有什么区别