Skip to content

Instantly share code, notes, and snippets.

@stevehorn
Created July 26, 2010 02:53
Show Gist options
  • Save stevehorn/490117 to your computer and use it in GitHub Desktop.
Save stevehorn/490117 to your computer and use it in GitHub Desktop.
s = "sample string"
replacements = { "a" => "i", "tring" => "ubstitution" }
#why is the "&" necessary before the s variable?
replacements.collect(&s.method(:gsub))
# => ["simple string", "sample substitution"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment