English 中文(简体)
JavaScript RegExp Tutorial

Selected Reading

JavaScript RegExp - p(hp)*
  • 时间:2024-09-17

JavaScript RegExp - p(hp)*


Previous Page Next Page  

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.


<html>
   <head>
      <title>JavaScript RegExp</title>
   </head>
   
   <body>
      <script type = "text/javascript">
		 var str = "phphp";
         var pattern = /p(hp)*/g;

         var result = str.match(pattern);
         document.write("Test 1 - returned value : " +  result); 

         str = "pap";
         result = str.match(pattern);
         document.write("<br/>Test 2 - returned value : " +  result); 	 		 
      </script>
   </body>
</html>

Output


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