If abc:fssd:sdsd is in your database, why you don't use PHP itself.
Example:
Suppose that a field holding such type of data is FieldName,
$query = "select * from TableName...";
$result = mysql_query($query);
while($data = mysql_fetch_object($result)){
$assign = $data->FieldName;
$add = explode(":", $assign);
echo $add[0];
echo $add[1];
echo $add[2];
}