Ruby String Exercises: Split a delimited string and convert it to an array
Write a Ruby program to split a delimited string and convert it to an array.
Ruby Code:
def check_string(my_string,d)
return my_string.split(d)
return my_string
end
print check_string("A,B,C,D,E,F", ",")
print "\n",check_string("A.B.C.D.E.F", ".")
Output:
["A", "B", "C", "D", "E", "F"] ["A", "B", "C", "D", "E", "F"]
Flowchart:
Ruby Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Ruby program to remove last specified characters from a given string.
Next: Write a Ruby program to remove a substring from a specified string.
What is the difficulty level of this exercise?
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics