Bug: regex find/replace and workaround

jkraai

Member
the following doesn't work as expected:
find: ^')
repl: }
result: })
the replaced text retains the close-parenthesis

explicitly escaping the close-paren in the find works:
find: ^'\)
repl: }
result: }

looks like the code to identify regexes in the "&Text to Find" field may be a little too agressive.

Where can we find current documentation on supported regex features? The text file referenced in the downloads directory appears to be out of date.

Thanks for the great product!

--jim
 
Back
Top