Check if a String Contains Certain Text in JavaScript



The jQuery search() method is used to check whether a string contains a certain text in JavaScript.

You can try to run the following code to check whether “Tutorialspoint: Free Video Tutorials” contains the “Free Video” text in JavaScript or not:

<html>
   <head>
      <title>JavaScript String search() Method</title>
   </head>
   <body>
      <script>
         var re = "Free Video";
         var str = "Tutorialspoint: Free Video Tutorials";
         if ( str.search(re) == -1 ) {
            document.write("Does not contain" );
         } else {
            document.write("Contains" );
         }
      </script>
   </body>
</html>
Updated on: 2019-09-12T07:21:59+05:30

141 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements