How do you get an instant from a date formatted as dd.MM.YYYY?


consulta en el ejemplo enviado

mi formato esta como dd/MM/yyyy
y toma MM ósea el 06 como el día
image

yo quiero que tome el 12 como dd
como podría hacer
saludos

Sorry I don't understand what you want to do .

According to SimpleDateFormat (Java Platform SE 8 ) to get the day in month you use the pattern d

Taifun

es correcto
mi formato esta en
dd/MM/yyyy
12 06 2023 ósea el 12 de junio del 2023 y es lunes

pero me reconoce como
miércoles 06 de diciembre
saludos

From the documentation

MakeInstant(from)

Returns an instant in time specified by MM/dd/YYYY hh:mm:ss or MM/dd/YYYY or hh:mm.

So if you want to get an instant from a date formatted as dd.MM.YYYY you first have to bring it into MM/dd/YYYY
You can use the split block to split at / to get a list of day, month and year and then use select list item blocks and put it together as MM/dd/YYYY again

Taifun