How do I separate the post title from the content in an excerpt coded thus:

The title isn’t mentioned anywhere in that code, have they included it in the actual content?

If so, you could remove it using a str_replace:

$content = str_replace( get_the_title($id), '', $content);