I tried to search for symbol characters using Perl style regex e.g.
for searching a bracket. If i disable Match Whole Word Only, I can match a standalone ] character. But if I enable it, the ] cannot be matched. This is observed when searching for many different kinds of symbol characters (* " etc). What is wrong with it?
I just want to initialize the findReplace parameters to a single consistent set of values (perl regex, matching whole word, etc) and change my search string only for various cases. Does it mean I should not use match by whole word when regex used?
Code: Select all
]
I just want to initialize the findReplace parameters to a single consistent set of values (perl regex, matching whole word, etc) and change my search string only for various cases. Does it mean I should not use match by whole word when regex used?