Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Parsing from right to left

BautistaC888
8 - Asteroid

Hello,
I need help parsing an address.
Example:
- Input.

BautistaC888_0-1637164229688.png


- Output:

BautistaC888_1-1637164255149.png

Thank you.

1 REPLY 1
afv2688
16 - Nebula
16 - Nebula

Hello @BautistaC888 ,

 

you can use the regex replace function for that for example:

 

 

Output1
REGEX_Replace([Field1], '(.*),(.*)', '$1')
Output2
REGEX_Replace([Field1], '(.*),(.*)', '$2')

 

 

Untitled.png

 

Hope that helps 🙂

 

Regards

Labels
Top Solution Authors