Skip to content

Instantly share code, notes, and snippets.

@bdittmer
Created February 11, 2012 21:42
Show Gist options
  • Save bdittmer/1804436 to your computer and use it in GitHub Desktop.
Save bdittmer/1804436 to your computer and use it in GitHub Desktop.
ruby-1.9.2-p180 :001 > s = 'asdf'
=> "asdf"
ruby-1.9.2-p180 :002 > s.strip
=> "asdf"
ruby-1.9.2-p180 :003 > s = ' asdf '
=> " asdf "
ruby-1.9.2-p180 :004 > s.strip
=> "asdf"
ruby-1.9.2-p180 :005 >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment