Do the following Find/Replace operation with the “Use wildcards” option checked:
Find What: \(http://[!^13]*\)
Replace With: clear box
Note that the above regex pattern will not catch URLs beginning with “https”. If you have any of these in your document, use the following Find/Replace (still with wildcards ON):
Find What: \(https://[!^13]*\)
Replace With: clear box
|