gpt4 book ai didi

java - 用字符串替换字符串中的特定字符?

转载 作者:太空宇宙 更新时间:2023-11-04 07:54:52 25 4
gpt4 key购买 nike

我有一个字符串,它是一个句子,我想将字符 't' 的所有实例替换为字符串 "foo",将 'h' 替换为 "bar"

String sentence = "The tea is hot.";

我想要实现的最终结果:

"The fooea is fooobar."

这可能吗?

最佳答案

使用替换:

sentence = sentence.replace("t", "foo").replace("h", "bar");

replaceAll 在此处不需要时采用正则表达式(因此不会像 replace 那样高效)。

<小时/>

相关文档

关于java - 用字符串替换字符串中的特定字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13771946/

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