我有一个这样的字符串:
"John Godson Michael Meyer Ludovicio Sforza Cezar Borgia Alessandro Batista"
如何将此字符串转换为字符串数组,例如
# ["John", "Godson", "Michael Meyer" (...)]
只需使用字符串#split
"John Godson Michael Meyer Ludovicio Sforza Cezar Borgia Alessandro Batista".split
"John Godson Michael Meyer Ludovicio Sforza Cezar Borgia Alessandro Batista".split(' ')
#=> ["John", "Godson", "Michael", "Meyer", "Ludovicio", "Sforza", "Cezar", "Borgia", "Alessandro", "Batista"]