I have an HTML code in the $output string, this code is delimited by two terms: -startMiniPreview- and -endMiniPreview-.
I need to take the part wrapped between those two terms and save it in another string variable.
This is what I thought was the right way to do so, but it's not working at all. The HTMLCODE part is getting exported succesfully but not as a string
    $output="-startMiniPreview-HTMLCODE-endMiniPreview-EXTRA";
    preg_match( '/\-startMiniPreview-(.*?)\-endMiniPreview/', $output,$vt);
    $cutOut=strval(var_export($vt[1]));
 
     
    