小编典典

替换字符串中的单词 - Ruby

all

我在 Ruby 中有一个字符串:

sentence = "My name is Robert"

如何在不使用复杂代码或循环的情况下轻松替换这句话中的任何一个单词?


阅读 97

收藏
2022-04-11

共1个答案

小编典典

您可以尝试使用这种方式:

sentence ["Robert"] = "Roger"

那么句子会变成:

sentence = "My name is Roger" # Robert is replaced with Roger
2022-04-11