gpt4 book ai didi

ruby-on-rails - 如何替换 Ruby 中的一系列字符?

转载 作者:数据小太阳 更新时间:2023-10-29 08:57:32 26 4
gpt4 key购买 nike

使用 Ruby,我如何替换字符串中的一系列字符?例如,给定字符串

hellothere

如果我想用“#”替换索引位置 2 到 5 处的字符以生成字符串

he####here

我该怎么做?

最佳答案

您可以获得一个字符串范围并通过设置新字符乘以最后一个索引加上 1 减去第一个索引来替换它:

def replace_in_string(str, replace, start, finish)
str[start..finish] = replace * (finish + 1 - start)
str
end

p replace_in_string 'hellothere', '#', 2, 5
# "he####here"

关于ruby-on-rails - 如何替换 Ruby 中的一系列字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47384484/

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