<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: how to convert String to date in talend in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283765#M57601</link>
    <description>Hello for me I add the local and it work&amp;nbsp;&lt;BR /&gt;TalendDate.parseDateLocale("EEE MMM d HH:mm:ss zzz yyyy", "Sun Mar 06 11:28:16 IST 2011","en")&amp;nbsp;</description>
    <pubDate>Wed, 11 May 2016 11:29:31 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-05-11T11:29:31Z</dc:date>
    <item>
      <title>how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283707#M57543</link>
      <description>&lt;P&gt;hi,&lt;BR /&gt;i have date which is in string "MM/dd/yyyy" and i want to convert same format in DATE data type in talend,&lt;BR /&gt;means &lt;BR /&gt;"MM/dd/yyyy" data type(String) ---&amp;gt; MM/dd/yyyy data type(DATE)&lt;BR /&gt;how could i do this please provide the solution.&lt;BR /&gt;thanks and regards&lt;BR /&gt;Shailendra Shukla&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2013 08:12:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283707#M57543</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-18T08:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283708#M57544</link>
      <description>Hi 
&lt;BR /&gt;You can use routine function TalendDate.parseDate("MM/dd/yyyy", yourStringData) to convert a string to a Date, for example: 
&lt;BR /&gt;tFileInputDelimited--main--tJavaRow--tlogRow 
&lt;BR /&gt;on tJavaRow: 
&lt;BR /&gt;outout_row.columnName=TalendDate.parseDate("MM/dd/yyyy", input_row.columnName); 
&lt;BR /&gt;If you want to learn more about the built in function TalendDate.parseDate("MM/dd/yyyy", yourStringData), expand Code node in Repository, then Routine, System. 
&lt;BR /&gt;Shong</description>
      <pubDate>Wed, 18 Sep 2013 08:26:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283708#M57544</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-18T08:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283709#M57545</link>
      <description>Hi, 
&lt;BR /&gt;And use TalendDate.parseDate(String, String) method in 
&lt;A href="https://help.talend.com/display/TalendComponentsReferenceGuide53EN/tMap" target="_blank" rel="nofollow noopener noreferrer"&gt;tMap&lt;/A&gt; or 
&lt;A href="https://help.talend.com/display/TalendComponentsReferenceGuide53EN/tConvertType" target="_blank" rel="nofollow noopener noreferrer"&gt;tConvertType&lt;/A&gt; component. 
&lt;BR /&gt;See my screenshots 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Sabrina 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M9Yj.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/152400i46BBC3113AE48D8A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M9Yj.jpg" alt="0683p000009M9Yj.jpg" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MALV.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138790iC73319E51D0B8A56/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MALV.jpg" alt="0683p000009MALV.jpg" /&gt;&lt;/span&gt;</description>
      <pubDate>Wed, 18 Sep 2013 08:28:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283709#M57545</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-18T08:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283710#M57546</link>
      <description>hi Xdshi, 
&lt;BR /&gt;thanks for your response but when i am using this format as u gave in the snap shot . 
&lt;BR /&gt;it throws an error like.. 
&lt;BR /&gt;Exception in component tMap_1 
&lt;BR /&gt;java.lang.RuntimeException: java.text.ParseException: Unparseable date: "23.09.2011" 
&lt;BR /&gt; at routines.TalendDate.parseDate(TalendDate.java:643) 
&lt;BR /&gt; at ok.date_formate_0_1.DATE_FORMATE.tFileList_1Process(DATE_FORMATE.java:7544) 
&lt;BR /&gt; at ok.date_formate_0_1.DATE_FORMATE.runJobInTOS(DATE_FORMATE.java:10340) 
&lt;BR /&gt; at ok.date_formate_0_1.DATE_FORMATE.main(DATE_FORMATE.java:10194) 
&lt;BR /&gt;Caused by: java.text.ParseException: Unparseable date: "23.09.2011" 
&lt;BR /&gt; at java.text.DateFormat.parse(Unknown Source) 
&lt;BR /&gt; at routines.TalendDate.parseDate(TalendDate.java:641) 
&lt;BR /&gt; ... 3 more 
&lt;BR /&gt;i used this format --TalendDate.parseDate("MM/dd/yyyy",row1.Clearing_Date) 
&lt;BR /&gt;thanks and regards 
&lt;BR /&gt;Shailendra shukla</description>
      <pubDate>Wed, 18 Sep 2013 08:56:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283710#M57546</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-18T08:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283711#M57547</link>
      <description>Hi, 
&lt;BR /&gt;If your input string is 23.09.2011, you should change the format as TalendDate.parseDate("MM.dd.yyyy",row1.Clearing_Date). 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Sabrina 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MALa.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138438iDD71965B815A972F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MALa.jpg" alt="0683p000009MALa.jpg" /&gt;&lt;/span&gt;</description>
      <pubDate>Wed, 18 Sep 2013 09:56:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283711#M57547</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-18T09:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283712#M57548</link>
      <description>23.09.2011 looks like dd.MM.yyyy format 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Wed, 18 Sep 2013 10:28:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283712#M57548</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-18T10:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283713#M57549</link>
      <description>Hi, &lt;BR /&gt;Sorry for the error. It is TalendDate.parseDate("dd.MM.yyyy",row1.Clearing_Date) for data 23.09.2011.&lt;BR /&gt;Thanks for correction.&lt;BR /&gt;@shailendra.shukla, is your input MM/dd/yyyy string?&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Wed, 18 Sep 2013 10:39:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283713#M57549</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-18T10:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283714#M57550</link>
      <description>Thanks Xdshi , 
&lt;BR /&gt;yup my input date in string, now its working. 
&lt;BR /&gt;but i want the output in MM/dd/YYYY but it gives as input format 
&lt;BR /&gt;and output is look like - 
&lt;BR /&gt;09/30/2011---&amp;gt;30-SEP-11 
&lt;BR /&gt;but i want in MM/dd/yyyy 
&lt;BR /&gt;i used this format 
&lt;BR /&gt;(Var.date==null || Var.date.isEmpty())? null : TalendDate.parseDate("MM/dd/yyyy",TalendDate.formatDate("MM/dd/yyyy",TalendDate.parseDate("MM/dd/yyyy",Var.date))) 
&lt;BR /&gt;regards 
&lt;BR /&gt;shailendra shukla</description>
      <pubDate>Wed, 18 Sep 2013 11:07:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283714#M57550</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-18T11:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283715#M57551</link>
      <description>Hi, 
&lt;BR /&gt;Show me your tMap editor screenshot so that I can get your current situation more precisely, please.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Sabrina</description>
      <pubDate>Wed, 18 Sep 2013 11:15:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283715#M57551</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-18T11:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283716#M57552</link>
      <description>sorry but i m unable to take screenshot, but i used below format&lt;BR /&gt;(Var.date==null || Var.date.isEmpty())? null : TalendDate.parseDate("MM/dd/yyyy",TalendDate.formatDate("MM/dd/yyyy",TalendDate.parseDate("MM/dd/yyyy",Var.date)))&lt;BR /&gt;and gave date pattern like MM/dd/yyyy.&lt;BR /&gt;my input date is MM/dd/yyyy.&lt;BR /&gt;after executing the job the output is look like. 09/30/2011(input)---&amp;gt;30-SEP-11(output)</description>
      <pubDate>Wed, 18 Sep 2013 11:30:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283716#M57552</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-18T11:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283717#M57553</link>
      <description>Hi, &lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;(Var.date==null || Var.date.isEmpty())? null : TalendDate.parseDate("MM/dd/yyyy",TalendDate.formatDate("MM/dd/yyyy",TalendDate.parseDate("MM/dd/yyyy",Var.date)))&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;You use a Var in your tMap? How to define it in your tMap? &lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Mon, 23 Sep 2013 05:12:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283717#M57553</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-23T05:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283718#M57554</link>
      <description>Hi , i have a source in excel with the following data&lt;BR /&gt;                                                                         id       name    dateofbirth     salary  hiredate&lt;BR /&gt;                                                                          1       xays      24/01/1994    100     05/07/2012    &lt;BR /&gt;                                                                          2        xyz       22/10/1991     200   04/02/2012&lt;BR /&gt;                                                                          3      kjsdj       04/02/1990     300   14/01/2008&lt;BR /&gt;                                                                          4       dfdkl      06/06/1989      400   16/02/2010 &lt;BR /&gt;here rowno1  24/01/1994,dateofbirth is displaying in excel as a general format&lt;BR /&gt;and rowno2    22/10/1994 dateofbirth is displaying in excel as a general format&lt;BR /&gt;and rowno 4   16/02/2010 hiredate is displaying in excel as a general format. so while iam loading this from excel to target  iam getting the following error  &lt;BR /&gt;                                The cell format is not date in row1 date of birth&lt;BR /&gt;                                The cell format is not date in row2 date of birth&lt;BR /&gt;                                The cell format is not date in row4 hire date         Because the above mentioned  rows are in general format in excel sheet.&lt;BR /&gt;my expetation is i want to get all the rows from source to target</description>
      <pubDate>Fri, 24 Jan 2014 12:39:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283718#M57554</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-24T12:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283719#M57555</link>
      <description>Hi Mahadevank,
&lt;BR /&gt;You can mention the data type of your dates as string while defining schema to fetch data from the excel file. Then using Talenddate.parsedate("mm/dd/yyyy", datestring) in tjavarow or any other component which supports expression, you can change the datatype of your fetched dates. 
&lt;BR /&gt;Hope this helps</description>
      <pubDate>Fri, 24 Jan 2014 13:40:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283719#M57555</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-24T13:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283720#M57556</link>
      <description>Hi, remytom 
&lt;BR /&gt; thank you for your fast response..........
&lt;BR /&gt;Here i used parsedate expression TalendDate.parseDate("dd/MM/yyyy".row1.date) in tmap while fetching the data from excel and the date columns are as a string datatype as you said in your reply.
&lt;BR /&gt; 
&lt;BR /&gt; But if i used parsedate in tmap the complete date value has been changed like.....
&lt;BR /&gt;row1 date is 24/01/1994 as changed to like this 01/12/95 and 
&lt;BR /&gt;row2. 22/10/1991 is changed to 10/10/19992
&lt;BR /&gt; can you show me the screen shot please for this solution</description>
      <pubDate>Mon, 27 Jan 2014 11:07:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283720#M57556</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-27T11:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283721#M57557</link>
      <description>I am not getting your error. If you could give me the snapshot of your tmap, I could understand better. Attaching herewith the snapshot of my solution. (I have converted only one of the date columns here and it works) 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MAHZ.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/147652iABC8887016642F69/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MAHZ.jpg" alt="0683p000009MAHZ.jpg" /&gt;&lt;/span&gt;</description>
      <pubDate>Mon, 27 Jan 2014 15:11:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283721#M57557</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-27T15:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283722#M57558</link>
      <description>Hi remytom, 
&lt;BR /&gt; 
&lt;BR /&gt; Yes i did in the way you said and here iam getting half rows only ........... 
&lt;BR /&gt;Because in my job i wrote parse date funtion in tmap for dateofbirth, hiredate column so i got half result what about another column (Hiredate). 
&lt;BR /&gt;If i write the parse date function also for leavedate column means its providing error. see my screen shot for your review 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA9L.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134796i069FFCA0A97CD8F0/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA9L.jpg" alt="0683p000009MA9L.jpg" /&gt;&lt;/span&gt;</description>
      <pubDate>Wed, 29 Jan 2014 05:41:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283722#M57558</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-29T05:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283723#M57559</link>
      <description>when you apply the conversion on both the columns, you are getting incorrect dates? Or some other error is coming up? &lt;BR /&gt;A screenshot of your tmap would be great!</description>
      <pubDate>Wed, 29 Jan 2014 08:18:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283723#M57559</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-29T08:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283724#M57560</link>
      <description>Hi remyton , 
&lt;BR /&gt; when iam applying the conversion on single column, i got some rows of data. 
&lt;BR /&gt; But when Iam applying the conversion on both column iam getting some different error here.............. 
&lt;BR /&gt;And i have some null row in leave date, is this a problem? 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MALk.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/145051i71A0A51E9C1C3C72/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MALk.jpg" alt="0683p000009MALk.jpg" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA9M.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/131871i3E4F3100321F2E8C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA9M.jpg" alt="0683p000009MA9M.jpg" /&gt;&lt;/span&gt;</description>
      <pubDate>Wed, 29 Jan 2014 10:38:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283724#M57560</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-29T10:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283725#M57561</link>
      <description>I am sorry .Your snapshot did not get uploaded. I am not able to understand the error you are getting. Could you paste the error message?</description>
      <pubDate>Wed, 29 Jan 2014 12:42:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283725#M57561</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-29T12:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to convert String to date in talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283726#M57562</link>
      <description>Hi remytom 
&lt;BR /&gt; see my previous post there i uploaded my snopshot . That is the error i got .
&lt;BR /&gt;i have applied parse date function for two column 1.dateofbirth,2.hiredate. when iam applying the parse date function for one more column leave date , i got the error.
&lt;BR /&gt;
&lt;BR /&gt;In leave date column i have some null values, is this a problem?.............</description>
      <pubDate>Wed, 29 Jan 2014 14:11:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-to-convert-String-to-date-in-talend/m-p/2283726#M57562</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-29T14:11:50Z</dc:date>
    </item>
  </channel>
</rss>

