Skip to content

Instantly share code, notes, and snippets.

@francois
Created February 3, 2010 14:16
Show Gist options
  • Select an option

  • Save francois/293627 to your computer and use it in GitHub Desktop.

Select an option

Save francois/293627 to your computer and use it in GitHub Desktop.
$ irb
irb(main):001:0> "abc".gsub(/\D/)
=> #<Enumerable::Enumerator:0x1018e0588>
irb(main):002:0> "abc".gsub(/\D/).to_s
=> "#<Enumerable::Enumerator:0x1018dbdd0>"
irb(main):003:0> RUBY_VERSION
=> "1.8.7"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment