Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Match Any String Containing One or More 'p's with JavaScript RegExp



To match any string containing one or more p’s with JavaScript RegExp, use the p+ Quantifier.

Example

You can try to run the following code to match any string containing one or more p’s. Here p is considered as a number of occurrences −

<html>
   <head>
      <title>JavaScript Regular Expression</title>
   </head>

   <body>
      <script>
         var myStr = "Secure and Responsive!";
         var reg = /s+/g;
         var match = myStr.match(reg);
         
         document.write(match);
      </script>
   </body>
</html>
Updated on: 2020-06-23T08:26:48+05:30

187 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements