字符串替换方法不替换字符
我有一个作为字符串传入的句子,我正在对单词“and”进行替换,我想将其替换为“ ”。它不是用空格代替“和”这个词。以下是我的逻辑示例。当我调试它时,逻辑确实落入句子.replace。
String sentence = "Define, Measure, Analyze, Design and Verify"
if (sentence.contains("and")){
sentence.replace("and", " ");
}
我在这里错过了什么吗?