admin管理员组文章数量:1340360
I'm trying to figure out how to get my regular expression to accept certain special characters: '
, ,
and -
along with alphanumeric characters. I've had a stab at it but to no avail, and I'm quite new to regex, can anyone help?
Here was my attempt which, surprisingly, didn't work...
/^\d+/,\'\-\$/i
I'm trying to figure out how to get my regular expression to accept certain special characters: '
, ,
and -
along with alphanumeric characters. I've had a stab at it but to no avail, and I'm quite new to regex, can anyone help?
Here was my attempt which, surprisingly, didn't work...
/^\d+/,\'\-\$/i
Share
Improve this question
edited Feb 21, 2011 at 14:26
sth
230k56 gold badges287 silver badges370 bronze badges
asked Feb 21, 2011 at 13:52
pampam
1431 gold badge3 silver badges9 bronze badges
1
- 1 This is just JavaScript, not jQuery. (In truth, it could be construed as language-agnostic, to some extent.) – Reid Commented Feb 21, 2011 at 13:58
3 Answers
Reset to default 7Something like this?
/[0-9a-zA-Z',-]+/
if it has to be a full string, you can use
/^[0-9a-zA-Z',-]+$/
Try
/^[\w',-]*$/
(assuming you mean ASCII letters, digits and underscore by "alphanumeric").
\d
is shorthand for [0-9]
, which is not any alphanumeric character.
/^[\w,'-]+$/i
should do the trick.
What this is saying:
^ - match the start of the line
[ - match any of the following characters (group #1)
\w - any word (meaning differs depending on locale;
generally, any letter, number or the `-` character.)
, - a ma
' - an apostrophe
- - a dash
] - end group #1
+ - one or more times
$ - match the end of the line
/i - set case-insensitivity.
本文标签: javascriptJQuery Regular expression to accept alphanumeric characters and 39Stack Overflow
版权声明:本文标题:javascript - JQuery Regular expression to accept alphanumeric characters and ' , - - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743636266a2513949.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论