We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
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