<?php

    $string = 'Chello said Hello, i said <a>after arriving say hello</a>';
    $regex = '/<a>.*?<\/a>|\b(hello)\b/ims';

    preg_match_all($regex, $string, $matches);
    
    foreach($matches as $key=>$value){
        if ($value[1]) {
    	    echo $key . "=" . $value[0];
        }
	    }

