如何将逗号分隔的字符串转换为数组?
有什么方法可以将逗号分隔的字符串转换为 Ruby 中的数组吗?例如,如果我有一个像这样的字符串:
"one,two,three,four"
我如何将它转换成这样的数组?
["one", "two", "three", "four"]
Is there any way to convert a comma separated string into an array in Ruby? For instance, if I had a string like this:
"one,two,three,four"
How would I convert it into an array like this?
["one", "two", "three", "four"]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 split 方法来执行此操作:
如果您想忽略前导/尾随空格,请使用:
如果您想将多行(即 CSV 文件)解析为单独的数组:
Use the
split
method to do it:If you want to ignore leading / trailing whitespace use:
If you want to parse multiple lines (i.e. a CSV file) into separate arrays: