Remove Commas from String

is this a string separated with commas, or an array?

if it's a string: the_string.gsub(/\,/,"")

...should do it (not tested, sorry).

-Jason