<?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: Unparsable date using Tmap in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Unparsable-date-using-Tmap/m-p/2279810#M54858</link>
    <description>&lt;P&gt;This is being caused by the double quotes you have inside your date. For example....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;11/28/2019"&amp;nbsp; "7:12:09 AM&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A way you get round this is to use the code below inside your parseDate method instead of row5.REQDTHR&lt;/P&gt;
&lt;PRE&gt;row5.REQDTHR.replaceAll("\"", "")&lt;/PRE&gt;</description>
    <pubDate>Fri, 29 Nov 2019 15:01:44 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-11-29T15:01:44Z</dc:date>
    <item>
      <title>Unparsable date using Tmap</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unparsable-date-using-Tmap/m-p/2279809#M54857</link>
      <description>&lt;P&gt;Hello guys,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;How you are ?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I'm facing a issue when i trying to parse a String column to Date. The error name is &lt;FONT color="#ff0000"&gt;Unparseable date "11/28/2019"&amp;nbsp; "7:12:09: AM"&lt;/FONT&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;The column is "REQDTHR" &amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="DataBaseSource.PNG" style="width: 449px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M8JI.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138766iF2EF639B1AE40445/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M8JI.png" alt="0683p000009M8JI.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;With tMap i'm using the expression bellow&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="tMap.Express.PNG" style="width: 962px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M80M.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/133181i4A10997353EA2416/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M80M.png" alt="0683p000009M80M.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;And when i run my job i receive this error mensage&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Error.PNG" style="width: 889px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M8GF.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/132605iF5552227B7DFB8DD/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M8GF.png" alt="0683p000009M8GF.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;I don't need the time just from the date, knowing this I tried using String.format ("% 10s", row5.REQDTHR) EREPLACE too, but nothing is working to remove these quotes correctly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for listening.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I appreciate any help.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 12:49:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unparsable-date-using-Tmap/m-p/2279809#M54857</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-29T12:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Unparsable date using Tmap</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Unparsable-date-using-Tmap/m-p/2279810#M54858</link>
      <description>&lt;P&gt;This is being caused by the double quotes you have inside your date. For example....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;11/28/2019"&amp;nbsp; "7:12:09 AM&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A way you get round this is to use the code below inside your parseDate method instead of row5.REQDTHR&lt;/P&gt;
&lt;PRE&gt;row5.REQDTHR.replaceAll("\"", "")&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Nov 2019 15:01:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Unparsable-date-using-Tmap/m-p/2279810#M54858</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-29T15:01:44Z</dc:date>
    </item>
  </channel>
</rss>

