gpt4 book ai didi

ruby - 如何替换字符串中的字符

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

我有一个方法可以用来替换字符串中的字符:

def complexity_level_two
replacements = {
'i' => 'eye', 'e' => 'eei',
'a' => 'aya', 'o' => 'oha'}
word = "Cocoa!55"
word_arr = word.split('')
results = []
word_arr.each { |char|
if replacements[char] != nil
results.push(char.to_s.gsub!(replacements[char]))
else
results.push(char)
end
}
end

我想要的字符串输出应该是:Cohacohaa!55

但是,当我运行这个方法时,它不会替换字符,只会输出字符串:

C
o
c
o
a
!
5
5

我做错了什么,这个方法不会替换字符串中的正确字符以匹配 hash 中的字符,我该如何解决这个问题以获得所需的输出?

最佳答案

replacements = {
'i' => 'eye', 'e' => 'eei',
'a' => 'aya', 'o' => 'oha'}
word = "Cocoa!55"
word.gsub(Regexp.union(replacements.keys), replacements)
#⇒ "Cohacohaaya!55"

Regexp::union , String#gsub with hash .

关于ruby - 如何替换字符串中的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41306355/

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