I have an array of strings that I need to loop and check against with another passed in string.
var filterstrings = ['firststring','secondstring','thridstring'];
var passedinstring = localStorage.getItem("passedinstring");
for (i = 0; i < filterstrings.lines.length; i++) {
if (passedinstring.includes(filterstrings[i])) {
alert("string detected");
}
}
How do I ensure that case sensitivity is ignored here (preferably by using regex) when filtering, if the var passedinstring
were to have strings like FirsTsTriNg
or fiRSTStrING
?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…