When do I need to escape characters within a regex character set (within [])?

前端 未结 1 1447
心在旅途
心在旅途 2020-12-16 15:01

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

相关标签:
1条回答
  • 2020-12-16 15:59

    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.

    0 讨论(0)
提交回复
热议问题