gpt4 book ai didi

javascript - 在字符串中查找模式的更好方法是什么?

转载 作者:行者123 更新时间:2023-12-03 08:53:35 25 4
gpt4 key购买 nike

这是我在给定字符串中查找不同长度模式的一种练习。我该如何改进它?存在哪些问题?这只是一个优化问题。

function find(pattern,str) {
var arr = [];
for (i= 0;i<str.length;i++) {
if(pattern== str.slice(i,pattern.length+i)) {
arr.push([i,pattern.length-1+i]);
};
};
if(!arr.length) { return false;} else { return arr;};
};


find('abfd','abfdffdabfdfaffab');

最佳答案

indexOf()方法返回搜索到的模式的位置,如果没有找到模式则返回-1:

<!DOCTYPE html>
<html>
<body>

<p>Click the button to locate where in the string a specifed value occurs.</p>

<button onclick="myFunction()">Try it</button>

<p id="demo"></p>

<script>
function find(pattern,str) {
var pos = str.indexOf(pattern);
return pos === -1 ? false : [pos, pos + pattern.length-1];
}
function myFunction() {
var pos = find('dabfd', 'abfdffdabfdfaffab');
document.getElementById("demo").innerHTML = 'found: ' + pos;
}
</script>

</body>
</html>

关于javascript - 在字符串中查找模式的更好方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32596136/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com