Find multipe word and affix
-
Hi, Can anybody help me with the correct commands.
I would like to find multiple words in a paragraph and affix a character at the beginning of the word.
For example, I need to find words computer, machine, laptop and affix *** at the beginning so that they will become ***computer, ***machine, ***laptop.
Thanks for the help.
-
@Den-Carlito said in Find multipe word and affix:
I would like to find multiple words in a paragraph and affix a character at the beginning of the word.
For example, I need to find words computer, machine, laptop and affix *** at the beginning so that they will becomeMenu: Search => Find
In Find dialogue:
Find what: (computer|machine|laptop)
Replace with: ***\1
Search Mode: Regular ExpressionCheers.
-
@Michael-Vincent
That did the trick. Thank you very much.