我有一个句子的字符串,我想用字符't'
和"foo"
替换字符'h'
的所有实例。{/ p >
"bar"
我想要达到的最终结果:
String sentence = "The tea is hot.";
这可能吗?
答案 0 :(得分:1)
使用replace
:
sentence = sentence.replace("t", "foo").replace("h", "bar");
replaceAll
在此处不需要时会采用正则表达式(因此效率不如replace
)。
相关文档
答案 1 :(得分:0)
由于这听起来像是家庭作业,我不会给出完整的解决方案。
但这是一个非常非常强烈的提示:replaceAll()