Need to convert 25 Dec 2021 to dd.MM.yyyy

Hi. How can i convert a date for instance 25 Dec 2021 (and all dates which are written like this ) to dd.MM.yyyy (25.12.2021) as the output? Thanks in advance.

@EmirY - Please check this…

Date.parse("25 Dec 2021").tostring("dd.MM.yyyy")

cdate("25 Dec 2021").tostring("dd.MM.yyyy")

image

@EmirY

Check below for your reference

Hope this may help you

Thanks