Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Split String

  • split
text = "This is a  string"
puts text
pieces = text.split(" ")
puts pieces # ["This", "is", "a", "", "string"]

pieces = text.split(/ +/)
puts pieces # ["This", "is", "a", "string"]

text = "name:secret"
name, password = text.split(":")
puts name
puts password