+ 13
How to split strings in ruby?
im trying to get an input separated by space
3 Answers
+ 7
<string>.split("#{text}")
+ 12
OK thanks
+ 5
use split method:
http://devdocs.io/ruby~2.4/string#method-i-split
im trying to get an input separated by space