gpt4 book ai didi

Ruby 字符串连接加空格

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

我需要制作一种重复给定单词的方法,但我认为我的设计有误。我需要单词之间的空格,我在这里缺少什么?

def repeat(word, repeats=2)
sentence = word.to_s * repeats
return sentence
end

最佳答案

当然,您缺少空格。

你可以这样做:

def repeat(word, repeats = 2)
Array.new(repeats, word).join(" ")
end

关于Ruby 字符串连接加空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17140527/

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