Question

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


Annonce
Ad

Réponse

var string = "La chaîne dans laquelle vous voulez chercher";
var substring = "vous";
if (string.search(substring)!==-1)
{
	// Si la chaîne contient la sous-chaîne
	...
}


[source]
# ID Query