Quote:
Originally Posted by gipsy
Is there is any way to find the word "τον" between italics and replace it with "του"?
|
The following very simple regex will find
one occurrence of "tov" at the beginning, at the end and in the middle of a string of text enclosed by <i></i> tags:
Find:
<i>(.*?)τον(.*?)</i>
Replace:
<i>\1του\2</i>
You'll, of course, have to run it multiple times to find multiple occurrences of "τον" enclosed by <i></i> tags.