I need to split the Full Name to First Name and Last Name. First Name and Last name is separated with either space or any other Special character. It should work for all the cased. Can you please provide Regex FORMULA for the below.
Full Name |
TURNER, JANICE |
VAN, TAYLOR |
BREAULT JASON |
LOOBY% CYNTHIA M |
Full Name | First Name | Last Name |
TURNER, JANICE | TURNER | JANICE |
VAN, TAYLOR | VAN | TAYLOR |
BREAULT JASON | BREAULT | JASON |
LOOBY% CYNTHIA M | LOOBY | CYNTHIA M |
Hi @LuckyRaju
Step 1: Input the data
Step 2: Text to columns tool.
Step 3: Data Cleansing tool used to remove the white spaces
Many thanks
Shanker V
You can try:
(.+?),?\s(.+)
Add a Data Cleanse tool thereafter to remove whitespace and it'll be all good.
User | Count |
---|---|
107 | |
82 | |
72 | |
54 | |
40 |