Hello,
I am trying to use RegEx to parse out a column into First Name, Middle Name, & Last Name. I used the following in the RegEx tool:
(^[[:alpha:]]+)\s*([[:alpha:]]*)\s+([[:alpha:]]+$)
This works great for all except for the ones with a name such as Frances L Guida Dileo. I just get [Null] in my output fields with names such as this.
Does anyone have any suggestions on how I can change/update the expression above to put the remaining characters after the 2nd space into the Last Name column? Any help would be much appreciated.

