Use these regular expressions to help split first and last names.
Keep first name - \s(.*)
\s(.*)
Keep last name - ^\S*
^\S*
Remove numbers from end of string \d(.*)
\d(.*)