in reply to Re: Regexp and transliteration between languages
in thread Regexp and transliteration between languages

This is an ugly, half baked idea, but you might do something like this:
while ($word) { ($consonants, $vowel, $word) = split(/([aeiou])/, $word, 2); # do something here }
I really like the parenthesis collection feature in split.