Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need to get current date in string format like 06 june 2018.
i need to pass this value in output excel
TalendDate.formatDate("dd MMM yyyy",TalendDate.getCurrentDate()) to populate your output field which must be declared as a String.
TalendDate.formatDate("dd MMM yyyy",TalendDate.getCurrentDate()) to populate your output field which must be declared as a String.
It should be four times 'M'
because MMM return Jun and MMMM June
TalendDate.formatDate("dd MMMM yyyy",TalendDate.getCurrentDate()) to populate your output field which must be declared as a String.