vote up 3 vote down star

I have an array:

int_array = [11,12]

I need to convert it into

str_array = ['11','12']

I'm new to this technology

flag

3 Answers

vote up 5 vote down
str_array = int_array.collect{|i| i.to_s}
link|flag
didnt help .. :( – swathi Apr 23 at 10:22
This worked fine for me. – srboisvert Apr 23 at 10:54
its working fine for me too.. thank you – swathi Apr 23 at 11:09
vote up 2 vote down
str_array = int_array.map(&:to_s)
link|flag
i'm still getting the output as [11, 12].. i didnt help – swathi Apr 23 at 10:04
How are you checking the type of your output? – srboisvert Apr 23 at 10:50
This works in Rails because it adds Symbol#to_proc – dylanfm Apr 26 at 10:14
vote up 1 vote down

Start up irb

irb(main):001:0> int_array = [11,12]
=> [11, 12]
irb(main):002:0> str_array = int_array.collect{|i| i.to_s}
=> ["11", "12"]

Your problem is probably somewhere else. Perhaps a scope confusion?

link|flag

Your Answer

Get an OpenID
or

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