Ruby string parsing

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

http://ruby-doc.org/core

Jason