JavaScript RegExp - p(hp)*



Description

p(hp)* matches any string containing a p followed by zero or more instances of the sequence hp.

Example

Following example shows usage of RegExp expression.


   
      JavaScript RegExp
   
   
   
      
   

Output

Test 1 - returned value : phphp
Test 2 - returned value : p,p
Advertisements