Full name split
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
LuckyRaju
7 - Meteor
‎07-18-2023
09:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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 |
Labels:
- Labels:
- Parse
6 REPLIES 6
ShankerV
17 - Castor
‎07-18-2023
10:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
ShankerV
17 - Castor
‎07-18-2023
10:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
ShankerV
17 - Castor
‎07-18-2023
10:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
Prometheus
12 - Quasar
‎07-18-2023
10:36 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
flying008
15 - Aurora
‎07-18-2023
05:11 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
17 - Castor
‎07-18-2023
06:52 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
You can try:
(.+?),?\s(.+)
Add a Data Cleanse tool thereafter to remove whitespace and it'll be all good.
Calvin Tang
Alteryx ACE
https://www.linkedin.com/in/calvintangkw/
Alteryx ACE
https://www.linkedin.com/in/calvintangkw/
