gpt4 book ai didi

ruby - 拆分不带括号的字符串并确保每个单词周围的引号

转载 作者:太空宇宙 更新时间:2023-11-03 18:08:06 25 4
gpt4 key购买 nike

我有以下格式的字符串 one-word-after-another 作为示例。我需要的是以下列格式输出这些 'one', 'word', 'after', 'another'

我已经尝试过 'one-world-after-another'.split("-") 但输出添加了我不需要的括号。

'one-world-after-another'.split("-")
=> ["one", "world", "after", "another"]

我知道这是因为它是一个数组。

谁能推荐一种实现结果的方法'one', 'word', 'after', 'another'

最佳答案

像这样的东西应该可以工作:

puts 'one-world-after-another'.split("-").map {|e| "'#{e}'"}.join(", ")

这会产生:

'one', 'world', 'after', 'another'

关于ruby - 拆分不带括号的字符串并确保每个单词周围的引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40347263/

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