垂直线javascript麻烦
document.write(new String("abgigi").search("|"));
上面的代码显示 0 而不是预期的 -1。为什么会这样呢?
document.write(new String("abgigi").search("|"));
The code above displays 0 instead of the expected -1. Why is that so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
search
采用正则表达式作为其参数,而|
是正则表达式中的 OR 运算符:您的搜索模式本质上是“空字符串 OR 空字符串”,因此匹配是在位置 0 处找到。如果您想进行简单的字符串匹配,请使用
indexOf
而不是search
。search
takes a regular expression as its argument and|
is the OR operator in regex: your search pattern is essentially "an empty string OR an empty string", so a match is found at position 0.If you want to do a simple string match, use
indexOf
instead ofsearch
.