To use JavaScript RegExp to match any string that contains at least two p sequences, use the p{2,} quantifier.
<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!