Skip to content

Instantly share code, notes, and snippets.

@pvin
Created June 7, 2016 06:31
Show Gist options
  • Save pvin/e72c0d8e6bb1dc1d6235008e261c808c to your computer and use it in GitHub Desktop.
Save pvin/e72c0d8e6bb1dc1d6235008e261c808c to your computer and use it in GitHub Desktop.
Ruby sub - gsub
puts 'yes yes'.sub( 'yes', 'no' )
=> no yes
puts 'yes yes'.gsub( 'yes', 'no' )
=> no no
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment