Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
155 views
in Technique[技术] by (71.8m points)

javascript - JQuery字符串包含check [duplicate](JQuery string contains check [duplicate])

This question already has an answer here:(这个问题在这里已有答案:)

How to check whether a string contains a substring in JavaScript?(如何检查字符串是否包含JavaScript中的子字符串?) 3 answers(3个答案)

I need to check whether a string contains another string or not?(我需要检查一个字符串是否包含另一个字符串?)

var str1 = "ABCDEFGHIJKLMNOP"; var str2 = "DEFG"; Which function do I use to find out if str1 contains str2?(我用哪个函数来确定str1是否包含str2?)   ask by diggersworld translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use javascript's indexOf function.(你可以使用javascript的indexOf函数。)

var str1 = "ABCDEFGHIJKLMNOP"; var str2 = "DEFG"; if(str1.indexOf(str2) != -1){ console.log(str2 + " found"); }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...