JavaScript RegExp - p{N1, N2}



Description

p{N1, N2} matches any string containing a sequence of N1 or N2 p's.

Example

Following example shows usage of RegExp expression.

<html> <head> <title>JavaScript RegExp</title> </head> <body> <script type = "text/javascript"> var str = "abcpp"; var pattern = /p{2,3}/g; var result = str.match(pattern); document.write("Test 1 - returned value : " + result); str = "abcp"; result = str.match(pattern); document.write("<br/>Test 2 - returned value : " + result); </script> </body> </html>

Output

Test 1 - returned value : pp
Test 2 - returned value : null
Advertisements