what\'s the fastest way to get only the important_stuff part from a string like this:
bla-bla_delimiter_important_stuff
here:
$arr = explode('delimeter', $initialString); $important = $arr[1];