All pastes #1963308 Raw Edit

Mine

public text v1 · immutable
#1963308 ·published 2010-10-15 19:21 UTC
rendered paste body
function FindText($string, $start, $end)
{
    $pos = strpos($string, $start);
    if($pos >= 0)
    {
        $pos2 = strpos($string, $end, $pos);
        if($pos2 >= $pos)
        {
            return substr($string, $pos, $pos2 - $pos);
        }
    }
}