vote up 3 vote down star

I have a string

"1,2,3,4"

and I'd like to convert it into an array:

[1,2,3,4]

How?

flag

1  
"1,2|3;42:4711".scan(/\d+/).map {|i| i.to_i } – Jonas Elfström Jun 10 at 14:13

2 Answers

vote up 11 vote down check
>> "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]
link|flag
2  
+1 i saw yours and realized i had to change each to map – Oliver N. Jun 10 at 14:05
3  
Remember, if you're using >=1.9, you can just use "1,2,3,4".split(',').map(:to_i) – Alex Fort Jun 10 at 14:30
4  
If you're using active support you can do: map(&:to_i) – jonnii Jun 10 at 15:32
vote up 4 vote down

"1,2,3,4".split(",") as strings

"1,2,3,4".split(",").map { |s| s.to_i } as integers

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.