/ Published in: Python
New and improved regexp
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
def VowelRemovr(s): import re return re.sub('[aeiou]', '', s, re.I)