admin管理员组文章数量:1345906
/^[^ ]([\w- \.\\\/&#]+)[^ ]$/,
I have the above regex. I want to make sure it accepts all special characters but i don't want to specify the entire special character listsuch as [\w- \.\\\/&#!@#$&]
. How can we make sure the above regex accepts all special characters
/^[^ ]([\w- \.\\\/&#]+)[^ ]$/,
I have the above regex. I want to make sure it accepts all special characters but i don't want to specify the entire special character listsuch as [\w- \.\\\/&#!@#$&]
. How can we make sure the above regex accepts all special characters
- 5 How do you define special characters? – rid Commented Feb 15, 2012 at 20:38
- We would probably give the most useful regexes if we had a sample line to match. As is, I believe /^[^ ](.+)[^ ]$/ is the best match thus far, since all we have to work with is the 'spirit' of your example: allow all characters, matches the start and end of the line but does not have leading and trailing spaces. – hexparrot Commented Feb 15, 2012 at 20:58
3 Answers
Reset to default 7[^\w\s]
matches any non-alphanumeric and non-whitespace character.
\S
matches any non-whitespace character.
.
matches any character except newlines.
[\S\s]
matches any character in a JavaScript regex.
Since you've got \w
and a space in there already, you must want all of the ASCII characters except control characters. That would be:
[ -~]
...or any character whose code point is in the range U+0020
(space) to U+007E
(tilde). But it looks like you want to make sure the first and last characters are not whitespace. In fact, looking at your previous question, I'll assume you want only letters or digits in those positions. This would work:
/^[A-Za-z0-9][ -~]*[A-Za-z0-9]$/
...but that requires the string to be at least two characters long. To allow for a single-character string, change it to this:
/^[A-Za-z0-9](?:[ -~]*[A-Za-z0-9])?$/
In other words, if there's only one character, it must be a letter or digit. If there are two or more characters, the first and last must letters or digits, while the rest can be any printing character--i.e., a letter, a digit, a "special" (punctuation) character, or a space.
Note that this only matches ASCII characters, not accented Latin letters like Â
or ë
, or symbols from other alphabets or writing systems.
.
matches any character except for newline.
本文标签: javascriptHow to make the below regex to accept any special characterStack Overflow
版权声明:本文标题:javascript - How to make the below regex to accept any special character - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743818381a2544340.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论