Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created March 23, 2016 00:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/c156aecd5aa77d629579 to your computer and use it in GitHub Desktop.
Save chuck0523/c156aecd5aa77d629579 to your computer and use it in GitHub Desktop.
str = 'hello'
puts str.delete 'h' # ello
puts str.delete 'l' # heo
puts str.delete 'f-z' # e ←範囲指定
puts str.delete '^e' # e以外
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment