“La chaîne JavaScript inclut la sous-chaîne” Réponses codées

Vérifiez si la chaîne contient une sous-chaîne en javascript?

const string = "javascript";
const substring = "script";

console.log(string.includes(substring));  //true
Batman

La chaîne JavaScript inclut la sous-chaîne

var str = "We got a poop cleanup on isle 4.";
if(str.indexOf("poop") !== -1){
	alert("Not again");
}
//use indexOf (it returns position of substring or -1 if not found)
Grepper

Comment vérifier si une chaîne contient une sous-chaîne en javascript

const string = "foo";
const substring = "oo";

console.log(string.includes(substring)); // true
 Run code snippet
Angry Albatross

JavaScript Vérifiez si la chaîne contient une sous-chaîne de texte

stringVariable.includes("Your Text");
Gifted Goldfinch

Comment vérifier si une chaîne contient une sous-chaîne en JavaScript?

There is a String.prototype.includes in ES6:

"potato".includes("to")
shafeeque

Réponses similaires à “La chaîne JavaScript inclut la sous-chaîne”

Questions similaires à “La chaîne JavaScript inclut la sous-chaîne”

Plus de réponses similaires à “La chaîne JavaScript inclut la sous-chaîne” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code