Home  >  Article  >  Web Front-end  >  Matches any string containing two or three consecutive p's

Matches any string containing two or three consecutive p's

王林
王林forward
2023-09-03 17:09:081102browse

Matches any string containing two or three consecutive ps

To use JavaScript RegExp to match any string containing two or three p sequences, use the p{2,3} quantifier.

Example

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

   <body>
      <script>
         var myStr = "Welcome 1, 10, 100, 1000, 1000";
         var reg = /\d{2,3}/g;
         var match = myStr.match(reg);
         
         document.write(match);
      </script>
   </body>
</html>

The above is the detailed content of Matches any string containing two or three consecutive 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