Computer >> Computer tutorials >  >> Programming >> Javascript

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>