You can do several replaces in one shot as follows

Re: Replacing words in a document -- mtoffaith
Posted by Emmanuel ® , 02/17/2024, 02:30:52 Reply Top Forum

using the Replace All Clipboard Command several times in a row:

{Ctrl A}{Wrap}
{CopySelection}{Wrap}
{ReplaceAllClipboard}
wholeWord = "y"
matchCase = "n"
preserveCase = "n"
findWhat = "biopsy"
replaceWith = "bx"
{/ReplaceAllClipboard}{Wrap}
{ReplaceAllClipboard}
wholeWord = "y
matchCase = "n"
preserveCase = "n"
findWhat = "patient"
replaceWith = "pt"
{/ReplaceAllClipboard}{Wrap}
{ReplaceAllClipboard}
wholeWord = "y"
matchCase = "n"
preserveCase = "n"
findWhat = "left"
replaceWith = "lt"
{/ReplaceAllClipboard}{Wrap}
{Paste}

replaces all occurences of biopsy by bx, of patient by pt, of left by lt .....




Edit | Reply | Where? | | Original Message | Top | Current page | Author
Followups