
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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>
Advertisements