in reply to Re: Strip first name from string
in thread Strip first name from string

Exactly. I don't know how to handle that, but I did do this and it worked okay:
@contactname = split(' ',$contact); $firstname = $contactname[0]; $lastname = $contactname[1]; $showcontactname = "Mr. $lastname";