Hi @Tooki
I suggest you use VBA code to change the "co" to "caw".
Go to Word, press Alt + F11 to open VBA Editor.
Please paste the following code in "ThisDocument" object.
Sub ReplaceCoWithCaw()
Dim rng As Range
Set rng = ActiveDocument.Range
With rng.Find
.Text = "co"
.Replacement.Text = "caw"
.Execute Replace:=wdReplaceAll
End With
End Sub
When you want to replace "co" with "caw", please press Alt + F8, run "ReplaceCoWithCaw" macro.********************************************
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.