红宝石 – 可以将字符串转换为数组?

前端之家收集整理的这篇文章主要介绍了红宝石 – 可以将字符串转换为数组?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
# (this give me list eg :,s,m ...
list = list + "," + name

我想使用拆分,然后加入…尝试使用下面…我不知道我在做什么

list = list.split(',') + name + collect{|c| c.name}.to_sentence 
list = list.split(',') + name + collect{|c| c.name}.Join(",")

有任何想法吗??

解决方法

我不明白你的问题,但如果你想将字符串转换为数组
>> "a string".split("")
=> ["a"," ","s","t","r","i","n","g"]
原文链接:https://www.f2er.com/ruby/273026.html

猜你在找的Ruby相关文章