Return to Snippet

Revision: 253
at July 6, 2006 19:41 by ndegruchy


Updated Code
def VowelRemovr(s):
    import re
    return re.sub('[aeiou]', '', s, re.I)

Revision: 252
at July 6, 2006 14:06 by ndegruchy


Updated Code
def VowelRemovr(s):
    import re
    return re.sub("(A|E|I|O|U|Y|a|e|i|o|u|y)", "", s)

Revision: 251
at July 6, 2006 14:05 by ndegruchy


Initial Code
def VowelRemovr(s):
    import re
    return re.sub(\"(A|E|I|O|U|Y|a|e|i|o|u|y)\", \"\", s)

Initial URL


Initial Description
New and improved regexp

Initial Title
Removes Vowels for Web2.0 Apps

Initial Tags
textmate, python, function

Initial Language
Python