For example, the following code wraps each matching character with an <i> tag.
echo preg_replace('/[aeiou]/', '<i>$0</i>', 'alphabet');
// result: <i>a</i>lph<i>a</i>b<i>e</i>t
But I'd like it to only replace each character once.
I'm looking for a result like <i>a</i>lphab<i>e</i>t, where the second a makes it through without a tag because the search string only has one a.
Can you help? Is this possible without of iterating through each character in an foreach loop?
The answer should also allow for two or more of the same characters, each only to be used once. For example, if I were searching for aaeioo in the string alphabetsoupisgood, it should match both of the a's but only two of the three o's.
