Thread: [Solved] Find and replace issue
View Single Post
 
Old 06-05-2015, 03:20 PM
Robert2 Robert2 is offline Windows 8 Office 2007
Competent Performer
 
Join Date: Jun 2013
Posts: 175
Robert2 will become famous soon enoughRobert2 will become famous soon enough
Default

The backslash before “(“ and “)” is there to “escape” the opening and closing brackets, i.e. to make them recognized as ordinary characters. Otherwise, Word would consider that the brackets define a regex “group” for back-reference.

“http://” searches for itself as a string of characters.

“[!^13]*” matches anything that is not a paragraph end mark.

Note that “\(http://*\)” or “\(https://*\)” would have done the job more simply!
Reply With Quote