Community Halloween is live until October 31st! Complete any 2 quick activities to earn the 2025 Community Halloween badge. Feeling brave? Check out the activities here
Start Free Trial

Alteryx Designer Desktop Discussions

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

Extract date ("dd/mm/yyyy") from string

BautistaC888
8 - Asteroid

Hello,

I need to get the date with format dd/mm/yyyy from a string.
INPUT:
=T("31/12/2021")

OUTPUT:
31/12/2021

I shared with you an example.

3 REPLIES 3
atcodedog05
22 - Nova
22 - Nova

Hi @BautistaC888 

 

Here is how you can do it.

Workflow:

atcodedog05_0-1643913586972.png

Hope this helps : )

 

binu_acs
21 - Polaris

@BautistaC888 

REGEX_Replace([Field1], '.+\"(.+)\".+', '$1')

binuacs_0-1643913667791.png

 

atcodedog05
22 - Nova
22 - Nova

Happy to help : ) @BautistaC888 

Cheers and have a nice day!

Labels
Top Solution Authors