<?php

$test =  '<a id="test">One &amp; -Two&nbsp;-&nbsp;Three</a>';
$res = explode("&nbsp;-&nbsp;", strip_tags($test));
echo $res[0]. "\n" . $res[1];