One rule that I need is that if the last vowel (aeiou) of a string is before a character from the set ('t','k','s','tk'), then a :
needs to be added right after the vowel.
So, in Python if I have the string "orchestras"
I need a rule that will turn it into "orchestra:s"
edit: The (t, k, s, tk) would be the final character(s) in the string