web-dev-qa-db-ja.com

コンマ区切りの文字列を配列に変換するにはどうすればよいですか?

Rubyでコンマ区切りの文字列を配列に変換する方法はありますか?たとえば、次のような文字列がある場合:

"one,two,three,four"

どうすればこのような配列に変換できますか?

["one", "two", "three", "four"]
66
Mark Szymanski

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"]]
130
Kevin Sylvestre
require 'csv'
CSV.parse_line('one,two,three,four') #=> ["one", "two", "three", "four"]
16
ephemient
>> "one,two,three,four".split ","
=> ["one", "two", "three", "four"]
9
DigitalRoss