Removed? Or replaced with a space?
I would say find where the first one is, then change them all to spaces, then put the first one back again.
loc= index(string,'*');
string=translate(string,' ','*');
if loc then substr(string,loc,1)='*';
... View more