Actually, there is. The string is part of a much larger string; it's not in constant form, either.
Obviously, I could do something like
<?php
$s = '... string from previous post ...';
$a = explode('</e>', $s);
$b = $a[0];
?>
But the actual problem requires regular expressions in order to be more flexible than simple string manipulation via the str* functions.