您好我正在使用indexOf方法来搜索另一个字符串中是否存在字符串。但我想得到字符串所在的所有位置?是否有任何方法可以获取字符串存在的所有位置?
<html>
<head>
<script type="text/javascript">
function clik()
{
var x='hit';
//document.getElementById('hideme').value ='';
document.getElementById('hideme').value += x;
alert(document.getElementById('hideme').value);
}
function getIndex()
{
var z =document.getElementById('hideme').value;
alert(z.indexOf('hit'));
}
</script>
</head>
<body>
<input type='hidden' id='hideme' value=""/>
<input type='button' id='butt1' value="click click" onClick="clik()"/>
<input type='button' id='butt2' value="clck clck" onClick="getIndex()"/>
</body>
</html>
有没有办法获得所有职位?
答案 0 :(得分:32)
尝试类似:
var regexp = /abc/g;
var foo = "abc1, abc2, abc3, zxy, abc4";
var match, matches = [];
while ((match = regexp.exec(foo)) != null) {
matches.push(match.index);
}
console.log(matches);
答案 1 :(得分:13)
这是一个有效的功能:
function allIndexOf(str, toSearch) {
var indices = [];
for(var pos = str.indexOf(toSearch); pos !== -1; pos = str.indexOf(toSearch, pos + 1)) {
indices.push(pos);
}
return indices;
}
使用示例:
> allIndexOf('dsf dsf kfvkjvcxk dsf', 'dsf');
[0, 4, 18]
答案 2 :(得分:1)
我不知道是否有内置函数来执行此操作。你可以在一个简单的循环中完成它:
function allIndexes(lookIn, lookFor) {
var indices = new Array();
var index = 0;
var i = 0;
while(index = lookIn.indexOf(lookFor, index) > 0) {
indices[i] = index;
i++;
}
return indices;
}
答案 3 :(得分:0)
你可以使用indexOf('searchstring',),使用返回'last last round'+ 1的索引直到你得到-1回来。
答案 4 :(得分:0)
这是一种正则表达方式:
function positions(str, text) {
var pos = [], regex = new RegExp("(.*?)" + str, "g"), prev = 0;
text.replace(regex, function(_, s) {
var p = s.length + prev;
pos.push(p);
prev = p + str.length;
});
return pos;
}