Home  >  Article  >  Web Front-end  >  Matches strings containing at least two p's

Matches strings containing at least two p's

王林
王林forward
2023-09-06 18:37:021344browse

Matches strings containing at least two ps

To use JavaScript RegExp to match any string that contains at least two p sequences, use the p{2,} quantifier.

Example

<html>
   <head>
      <title>JavaScript Regular Expression</title>
   </head>
   <body>
      <script>
         var myStr = "Welcome 1, 10, 100, 1000";
         var reg = /\d{2,}/g;
         var match = myStr.match(reg);

         document.write(match);
      </script>
   </body>
</html>

The above is the detailed content of Matches strings containing at least two p's. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete