垂直线javascript麻烦

发布于 2024-10-19 18:52:16 字数 111 浏览 4 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萤火眠眠 2024-10-26 18:52:16

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 of search.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文