Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
I have a csv file which have some time a date like this 00/00/00 by using tMap I want to make a condition if it 00/00/00 make it null
I tried but its not work
ToMap.date_naissance != "00/00/00" ? (ToMap.date_naissance).toString() : null
Thank you
Hi,
It works "ToMap.date_naissance.equals("00/00/00") ? null : date_naissance" Only when both the source and target data type is string.
What if our datatype in source is string and target is date data type.