Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.

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