Are the rules for what I escape in a bracket different for what I do outside of brackets?
For example should I escape a ?
inside a bracket? Is it /blah[^?]/
or /blah[^\?]/
Are the rules for brackets different than not, or should I be escaping both the same?
The only thing that needs to be escaped in brackets is a closing bracket, and a minus if it is not initial or final, and a hat if it is initial, AFAIK. And the backslash itself, obviously.
The reason is, these are the only characters with a special significance inside the brackets. A closing bracket ends the brackets, a mid-string minus indicates a range, and an initial hat negates the bracket class. Everything else should be literally interpreted. The backslash is the escape character, so you need a double backslash to match a literal backslash.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With