Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

talend date issue

dear sir

i have a excel sheet column name test date.

0683p000009LtOk.jpg

how can i set it into a standard method. am facing problem because it contain string also and integer value 0. 

how can string and integer value 0  replace into null. 

i hope u understand my trouble. Kindly resolve my issue.

Labels (2)
1 Reply
Anonymous
Not applicable
Author

Hi bksing,

 

You can use input_column.replaceAll([a-zA-Z],"") and input_column.replaceAll("0","") functions to remove string and zero value from source.

After that use TalendDate.parseDate("dd-MM-yyyy",input_column) to parse date.