Hello have been trying to find the answer to this but cant seem to get a full breakdown i found some that can do half of what i need.
I'm looking to take a column with the full name and break it down into First name, Middle initial, Last Name, and Suffix. Also some last names have a hyphen in the last name and some names have a middle initial and some don't.
Was wondering if there is a regex code that can parse the full name and break it down. i posted a table example below....
Any help would be greatly appreciated
This is the original column....
| Full Name |
| Anthony Smith |
| Ava R Collins |
| Carol Smith-Rodriguez |
| Jennifer Jones |
| Jeff G Waller JR. |
| Frank Hobbs |
| Tom Griffen SR. |
| Alicia F Smith-Walker |
Would like the below output ....
| Full Name | First Name | Middle Initial | Last Name | Suffix |
| Anthony Smith | Anthony | | Smith | |
| Ava R Collins | Ava | R | Collins | |
| Carol Smith-Rodriguez | Carol | | Smith-Rodriguez | |
| Jennifer Jones | Jennifer | | Jones | |
| Jeff G Waller JR. | Jeff | G | Waller | JR. |
| Frank Hobbs | Frank | | Hobbs | |
| Tom Griffen SR. | Tom | | Griffen | SR. |
| Alicia F Smith-Walker | Alicia | F | Smith-Walker | |