admin管理员组文章数量:1344530
I am able to search a string using str.search("me");
and str.search("=");
But when i serach for str.search("?");
I get the error Unexpected Quantifier.
Why is that?
How can i search for "?"
using something other than a regular expression?
I am able to search a string using str.search("me");
and str.search("=");
But when i serach for str.search("?");
I get the error Unexpected Quantifier.
Why is that?
How can i search for "?"
using something other than a regular expression?
4 Answers
Reset to default 6"?" is a special character in a regular expression (one of the "quantifiers") which means "match the preceding zero or one times". It lead to the error in this case because it was preceded by nothing. However, "a?" wouldn't have thrown an exception, but would match "b" so this is an important thing to look out for.
If using String.search
, which takes a regular expression (as karim79 points out, it isn't the only way), use "[?]"
or "\\?"
or /\?/
. These forms will prevent the "?" from being treated as a special regular expression construct.
Happy coding.
alert(str.indexOf("?")); // returns position as integer if present, -1 otherwise
Typical usage scenario is:
if(str.indexOf("?") !== -1) {
// present
}
https://developer.mozilla/en/JavaScript/Reference/Global_Objects/String/indexOf
Try this:
alert(str.search("\\?"));
It is quantifier and you can`t directly use it. From javascriptkit.
? is short for {0,1}. Matches zero or one time.
and MSDN
? Matches the preceding character or subexpression zero or one time. For example, 'do(es)?' matches the "do" in "do" or "does". ? is equivalent to {0,1}
This is the right usage:
str.search("\\?")
本文标签: jqueryJavascript strsearch(quotquot) returns Unexpected Quantifier errorStack Overflow
版权声明:本文标题:jquery - Javascript str.search("?") returns Unexpected Quantifier error - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743741520a2530982.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论