“JavaScript String Search ()” Kod odpowiedzi

Wyszukiwanie ciągów JS

var str = "This is a test sentence";
var hasTest = str.includes("test");

if(hasTest == true){
	//do a thing 
}
Lazy Lemur

JavaScript String Search ()

let str = "Please locate where 'locate' occurs!";
str.search("locate");
naly moslih

Wyszukaj ciąg JavaScript

"I love cats".indexOf("cat") //returns 7, the position of "cat"
Abraham Adamu

Odpowiedzi podobne do “JavaScript String Search ()”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu