Answers for "ruby split string"

2

split ruby

# no number splits on single whitespace
myArray = "hello hello".split 

# / / is one white space 
# limit value is 2 
myArray = "hello hello".split(/ /, 2) 

# -1 means no limit to the number of fields returned, 
myArray = "hello hello".split('o', -1)
Posted by: Guest on March-17-2021
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