最佳答案
Is there any way to convert a comma separated string into an array in Ruby? For instance, if I had a string like this:
"one,two,three,four"
How would I convert it into an array like this?
["one", "two", "three", "four"]