admin管理员组文章数量:1344331
Let's say I want to match one of the following characters: a
, b
, c
, or +
(in JavaScript). Do I need to escape the +
? Is it /[abc+]/
or /[abc\+]/
? Both work in my limited selection of test browsers. Which is (more) correct?
Let's say I want to match one of the following characters: a
, b
, c
, or +
(in JavaScript). Do I need to escape the +
? Is it /[abc+]/
or /[abc\+]/
? Both work in my limited selection of test browsers. Which is (more) correct?
2 Answers
Reset to default 10Regex reference
Under character classes:
Any character except
^-]\
add that character to the possible matches for the character class.
In other words, you don't have to escape the +
.
No need to escape the +
in character class [xxx]
:
/[abc+]/
本文标签: javascriptSpecial Characters in Regex BracketsStack Overflow
版权声明:本文标题:javascript - Special Characters in Regex Brackets - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743798089a2540804.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论