in reply to Re: Strip first name from stringin thread Strip first name from string
@contactname = split(' ',$contact); $firstname = $contactname[0]; $lastname = $contactname[1]; $showcontactname = "Mr. $lastname"; [download]