I have a string
"1,2,3,4"
and I'd like to convert it into an array:
[1,2,3,4]
How?
>> "1,2,3,4".split(",") => ["1", "2", "3", "4"]
Or for integers:
>> "1,2,3,4".split(",").map { |s| s.to_i } => [1, 2, 3, 4]
"1,2,3,4".split(",") as strings
"1,2,3,4".split(",")
"1,2,3,4".split(",").map { |s| s.to_i } as integers
"1,2,3,4".split(",").map { |s| s.to_i }
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
3 years ago
viewed
29381 times
active
3 months ago