Skip to content

Instantly share code, notes, and snippets.

@Loschcode
Last active April 6, 2016 17:29
Show Gist options
  • Save Loschcode/9766690702103fd6eb860cdbaa52519b to your computer and use it in GitHub Desktop.
Save Loschcode/9766690702103fd6eb860cdbaa52519b to your computer and use it in GitHub Desktop.
Remove vowel from a string in Ruby
#
# Remove vowel from a string in Ruby
#
class String
def remove_vowel
self.delete "aeiouyAEIOUY"
end
end
"bonjour !".remove_vowel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment