Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have my string input 01012021 and i need to convert it to date output 01/01/2021 in my tmap. How can i do that? Thank you!
Regards,
Enrique
Hi,
TalendDate.parseDate("ddMMyyyy",here your input string)
Send me Love and Kudos
Hi,
TalendDate.parseDate("ddMMyyyy",here your input string)
Send me Love and Kudos
Thank you!
you'r welcome , in your output schema set a pattern for your date : "dd/MM/yyyy", if you want the date as you mention.
I get an error because there is a null value in my input. How do you set a condition to ignore the value when it's null or do TalendDate.parseDate("ddMMyyyy",input) when it is not null? Thank you!
You can write (your input) != null
in the expression filter of the tMap output
Hey Thanks a lot, but I am having one issue I got "ERROR: timestamp out of range". my string is a timestamp I want to make it as a timestamp (Date)
my timestamp is - "1631898440"
please help 😞