web-dev-qa-db-fra.com

String contient une autre chaîne

Comment puis-je vérifier si une chaîne contient une autre chaîne au lieu d'utiliser "==" pour comparer la chaîne entière?

Cordialement

124
donald

Vous pouvez utiliser .indexOf() :

if(str.indexOf(substr) > -1) {

}
193
Felix Kling