Change date format using regex

Hi, i’m trying to change date format from 06/25/2024 to 2024-06-25

Pattern
\d{2}/\d{2}/\d{4}
Replace to
\3-\2-\1 is not working
Can please help with this?

If that is the only reason you are using the regex you don’t need to use it you can do it right a variable.

Just replace the date with 06/25/2024 as your {{1.Date (A)}} and you should be set

3 Likes

It works, thank you so much!

1 Like