Javascript str.search()多个实例

时间:2011-07-26 05:07:55

标签: javascript string search indexing multiple-instances

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

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

非常感谢, 温

2 个答案:

答案 0 :(得分:12)

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

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

答案 1 :(得分:5)

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

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