I would like to replace a long list of case-sensitive specific phrases or words with a fixed link and then the found word or phrase.
For instance, find the Phrase:
Color J
and replace with
<a href="samelink">Color J</a>
Or find the phrase:
IF
and replace with
<a href="samelink">IF</a>
The reason I wan to do this with regex is so that I can just write a single long regex search without using the regular word search list function, where I would have to maintain two long lists.
Can you get me started on the syntax for the regex, or should I just use the regular word search list replace function?