admin管理员组文章数量:1346662
Is there a way in HTML (JavaScript) to write a regular expression to negate an exact string match?
I would like to make sure an input is not equal to "foo
". Only "foo
" must fail validation, but "fooo
" must be allowed.
In other words, I'm looking for a negation of this regex:
<input pattern="^foo$" ...>
Is there a way in HTML (JavaScript) to write a regular expression to negate an exact string match?
I would like to make sure an input is not equal to "foo
". Only "foo
" must fail validation, but "fooo
" must be allowed.
In other words, I'm looking for a negation of this regex:
<input pattern="^foo$" ...>
-
1
You can use a negative lookahead:
<input pattern="^(?!foo$)" ...>
– anubhava Commented Dec 22, 2017 at 5:42 - Possible duplicate of HTML5 pattern exclude words – Nir Alfasi Commented Dec 22, 2017 at 6:02
- It doesn't seem to work: codepen.io/smatric/pen/mprBMd – Mateusz Commented Dec 22, 2017 at 6:02
3 Answers
Reset to default 7One possible way is bining start of string anchor (^
) with negative lookahead that includes both the target string and end of string anchor ($
):
/^(?!foo$)/
Demo.
But pattern
pattern is funny in that account - it has to match something in the string, that's why the original approach doesn't work. This does work, however:
<input pattern="(?!foo$).*">
If Javascript is allowed, why not just negate the result of the match?
if (!yourString.match(/^foo$/)) {
...
}
You can use this regex:
\bfooo\b
本文标签: htmlJavaScript regular expression to negate an exact string matchStack Overflow
版权声明:本文标题:html - JavaScript regular expression to negate an exact string match - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743826050a2545658.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论