gpt4 book ai didi

Java字符开关

转载 作者:行者123 更新时间:2023-11-29 10:07:03 26 4
gpt4 key购买 nike

在 Java 中切换字符的真正简单方法是什么?假设我有以下内容:

String testString = "Hello World.";

// I know this doesn't work
testString = testString.replace('o', 'e');

我想将“e”换成“o”,我知道这行不通...请告诉我我需要做什么

最佳答案

 String testString = "Hello World.";
String replacedString = testString.replaceAll("o", "~")
.replaceAll("e","o")
.replaceAll("~","e");

好吧,只要你的字符串没有~

关于Java字符开关,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5009640/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com