Alteryx Designer Desktop Discussions

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

Regex for Date

Pranab_C
8 - Asteroid

Hi Alteryx Champions,

 

Need help in extracting the numbers that are coming at the end. In the attached screen-shot, I would require -19,911 and 453,590 to come out into a separate column similarly 01/04/22 from the below string: 

 

Date entered..............................................................01/04/22

5 REPLIES 5
gawa
15 - Aurora
15 - Aurora

Try Regex tool or Formula's Regex_Replace function, with "^.*(\d{2}/\d{2}/\d{2}$)".

Pranab_C
8 - Asteroid

Thank you so much for your quick reply, it worked for the dates, can you please help with the second part of the question too.

AndrewDMerrill
13 - Pulsar

Based on the image, something like this may work:
.*\s(.*?\d.*?$)

Pranab_C
8 - Asteroid

Thank you that worked out

gawa
15 - Aurora
15 - Aurora
Labels