i have this code:
$text = "###12###hello###43###good###113###thefinalstring";
preg_match_all('/(.*?)###(\d*)###(.*?)/is', $text, $matches, PREG_SET_ORDER);
If I dump $matches, why there is not "thefinalstring" anywhere? Where is the error in the regular expression?
Thanks