Hi,
I had asked a question sometime back on this forum, in relation to using RegEx tool, for splitting a Name field into First Name, Middle Name and Last Name columns. Below is the expression i was using,
^(\<\w+\>)\s(.+)\s(\<.+\>)$
This is working fine for the 3 part Name field but not showing any result if the Name field just 1 or 2 part as Name value i.e. if it has a First Name or First and Middle Name.
For ex,
For a field like this,

I get result like,

Could someone suggest some solution to this problem?
Thanks.