array = string.split(‘,’)
or to make sure there’s no extra white space (I think)
array = string.split(‘,\s*’)
Please go read:
http://www.rubycentral.com/book/
and check out
Jason
array = string.split(‘,’)
or to make sure there’s no extra white space (I think)
array = string.split(‘,\s*’)
Please go read:
http://www.rubycentral.com/book/
and check out
Jason