Is there a way using regex to replace characters in a string based on position?
For instance, one of my rewrite rules for a project I’m working on is “replace o with ö if o is the next-to-last vowel and even numbered (counting left to right).”
So, for example:
heabatoikwould becomeheabatöik(ois the next-to-last vowel, as well as the fourth vowel)habatoikwould not change (ois the next-to-last vowel, but is the third vowel)
Is this possible using preg_replace in PHP?