Revision: 253
Updated Code
at July 6, 2006 19:41 by ndegruchy
Updated Code
def VowelRemovr(s): import re return re.sub('[aeiou]', '', s, re.I)
Revision: 252
Updated Code
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
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
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