Can someone tell me why it seems I am not getting the right results using this regular expression in this python code? I would have thought, for example, that the initial vowel in the word "about" should not disappear. Thanks.
>>> sentence = "But the third reason Americans should care about Europe is more important even than the risk of a renewed financial crisis."
>>> regexp = r'^[AEIOUaeiou]+|[AEIOUaeiou]+$|[^AEIOUaeiou]'
>>> def compress(word):
... pieces = re.findall(regexp, word)
... return ''.join(pieces)
>>> compress(sentence)
'Bt th thrd rsn mrcns shld cr bt rp s mr mprtnt vn thn th rsk f rnwd fnncl crss.'
re.sub(r'(?i)\B[aeiou]\B', '', word)– Qtax Nov 21 '11 at 12:50\B) on both sides, ie. the vowels that are completely in inside a word. "a" is not removed because it does not have not-word-boundaries around it.(?i)makes the regex case insensitive. – Qtax Nov 25 '11 at 12:57