fork download
  1. <?php
  2.  
  3. $string = 'Chello said Hello, i said <a>after arriving say hello</a>';
  4. $regex = '/<a>.*?<\/a>|\b(hello)\b/ims';
  5.  
  6. preg_match_all($regex, $string, $matches);
  7.  
  8. foreach($matches as $key=>$value){
  9. if ($value[1]) {
  10. echo $key . "=" . $value[0];
  11. }
  12. }
  13.  
  14.  
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
0=Hello