Home > Article > Web Front-end > Matches any string containing two or three consecutive p's
To use JavaScript RegExp to match any string containing two or three p sequences, use the p{2,3} quantifier.
<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!