Skip to content

Instantly share code, notes, and snippets.

@codertcet111
Last active July 12, 2020 13:14
Show Gist options
  • Save codertcet111/db8d63bbb0d4171b0d801945b29c5a04 to your computer and use it in GitHub Desktop.
Save codertcet111/db8d63bbb0d4171b0d801945b29c5a04 to your computer and use it in GitHub Desktop.
animal = {
'D' => 'dog',
'C' => 'cat'
}
puts 'DC'.gsub(/\w/,animal)
# O/P: 'dogcat'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment