Tip of the Day error

The tip today was about Edit - Find and Replace using regular expression. The example shown says it finds expressions inside brackets [ ] but it really finds expressions inside parenthesis ( )


.

Hello @HnRShirley,
Thanks for sharing. Would you post file a bug report?

For square brackets you must use \[[^]]+\].
\[” is for the opening “[
[^]]+” is for no (^) one or more (+) “]
\]” is for the closing “]

Regular expressions.

Parentheses are also brackets, just round brackets. The [ and ] are square brackets, < and > are angle brackets, { and } are curly brackets.
But maybe the help should be more specific and call them parentheses when parentheses are meant.