I need help on regex or preg_match because I am not that experienced yet with regards to those so here is my problem.
I need to get the value \"get me\" but I think
Try this
$str = 'abc aabbcc'; preg_match_all("#([^<]+)#", $str, $foo); print_r($foo[1]);