There are similar questions in SO, but I couldn\'t find any exactly like this. I need to remove everything up to (and including) a particular delimiter. For example, given t
You could use explode to do this: link.
explode
Something like:
$string = "File:MyFile.jpg"; list($protocol,$content) = explode(":", $string); echo $content;