Maison > Article > interface Web > Méthode JavaScript pour vérifier si une sous-chaîne se trouve dans une chaîne_javascript
L'exemple de cet article décrit la méthode JavaScript permettant de vérifier si une sous-chaîne est dans une chaîne. Partagez-le avec tout le monde pour votre référence, les détails sont les suivants :
var strnew="Hello Raghu How are u" //Checking existence in entire string if(strnew.indexOf("Raghu") != -1 ) { alert("Exists"); } /* Checking existence at the end of string For example, variable result1 in the following example is assigned the value of true because the word "Ishmael" appears at the end of the string. Variable result2 is assigned a value of false because "Raghu" doesn't appear at the end of the string. */ result1 = /Raghu$/.test("Call me Raghu"); result2 = /Raghu$/.test("Call me Raghu. Some years ago"); /* Checking existence in the begining of string In the following example, variable result1 is assigned the value of true because the word "Birds" appears at the beginning of the string. Variable result2 is assigned the value of false because "Birds" doesn't appear at the beginning of the string. */ result1 = /^Birds/.test("Birds fly"); result2 = /^Birds/.test("Big Birds fly");
Les lecteurs intéressés par davantage de contenu lié à JavaScript peuvent consulter les sujets spéciaux sur ce site : "Résumé des techniques d'algorithme de recherche JavaScript" et "Résumé de la structure de données et des techniques d'algorithme JavaScript "
J'espère que cet article sera utile à tout le monde dans la programmation JavaScript.