如何将逗号分隔的字符串转换为数组?

发布于 2024-10-14 19:14:00 字数 183 浏览 2 评论 0原文

有什么方法可以将逗号分隔的字符串转换为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

坐在坟头思考人生 2024-10-21 19:14:00

使用 split 方法来执行此操作:

"one,two,three,four".split(',')
# ["one","two","three","four"]

如果您想忽略前导/尾随空格,请使用:

"one , two , three , four".split(/\s*,\s*/)
# ["one", "two", "three", "four"]

如果您想将多行(即 CSV 文件)解析为单独的数组:

require "csv"
CSV.parse("one,two\nthree,four")
# [["one","two"],["three","four"]]

Use the split method to do it:

"one,two,three,four".split(',')
# ["one","two","three","four"]

If you want to ignore leading / trailing whitespace use:

"one , two , three , four".split(/\s*,\s*/)
# ["one", "two", "three", "four"]

If you want to parse multiple lines (i.e. a CSV file) into separate arrays:

require "csv"
CSV.parse("one,two\nthree,four")
# [["one","two"],["three","four"]]
木格 2024-10-21 19:14:00
require 'csv'
CSV.parse_line('one,two,three,four') #=> ["one", "two", "three", "four"]
require 'csv'
CSV.parse_line('one,two,three,four') #=> ["one", "two", "three", "four"]
心的位置 2024-10-21 19:14:00
>> "one,two,three,four".split ","
=> ["one", "two", "three", "four"]
>> "one,two,three,four".split ","
=> ["one", "two", "three", "four"]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文