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

Is the string empty or blank?

  • size
  • empty?
  • blank?
empty = ""
puts empty.size
puts empty.empty?
puts empty.blank?

whitespaces = "  \t\n\n\t"
puts whitespaces.size
puts whitespaces.empty?
puts whitespaces.blank?