Javascript str.search() 多个实例

发布于 2024-11-26 11:15:26 字数 158 浏览 2 评论 0原文

如何从字符串搜索的多个实例中检索多个索引?

var str = "food";
var index1 = str.search("o"); // 1
var index2 = str.search("o"); // ?

非常感谢, 文

How can I retrieve multiple indexes from multiple instances of a string search?

var str = "food";
var index1 = str.search("o"); // 1
var index2 = str.search("o"); // ?

Thanks much,
Wen

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

你怎么敢 2024-12-03 11:15:26

我认为对于非平凡长度的字符串执行此操作的最佳方法是 RegExp.exec()函数

var str = "Foooooooood!",
    re = /o/g,
    match;
while (match = re.exec(str)) {
    console.log(match.index); // logs 1 through 9
}

I think the best way to do this for strings of non-trivial length is the RegExp.exec() function:

var str = "Foooooooood!",
    re = /o/g,
    match;
while (match = re.exec(str)) {
    console.log(match.index); // logs 1 through 9
}

您可以使用 indexOf 方法的第二个参数来实现您想要的:

var str = "food",
    index1 = str.indexOf("o"),
    index2 = str.indexOf("o", index1+1);

You can use second parameter of indexOf method to achieve what you want:

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