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

Substitute

  • sub

  • gsub

  • gsub is the global substituted or /g in other languages.

text = "ab  text. and $ and ^ also"
puts text
puts text.sub(/\W/, "")
puts text.gsub(/\W/, "")
ab  text. and $ and ^ also
ab text. and $ and ^ also
abtextandandalso