Answers for "split string symbol ruby"

0

how to split string into characters ruby

string = "hey there"
string.chars #=> ["h", "e", "y", " ", "t", "h", "e", "r", "e"]
#OR
string.split("")
Posted by: Guest on September-18-2020

Browse Popular Code Answers by Language