<?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: datetime string to date in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/datetime-string-to-date/m-p/2342852#M110671</link>
    <description>&lt;P&gt;Thanks @guenneguez jeremy​&amp;nbsp; you set me on the right path. In the end i had to get rid of the text at the end and use the right pattern&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TalendDate.parseDate("E MMM dd yyyy HH:mm:ss",redemption.transaction_date.substring(0, redemption_rakuten.transaction_date.indexOf("GMT")).trim())&lt;/P&gt;</description>
    <pubDate>Thu, 13 May 2021 15:02:57 GMT</pubDate>
    <dc:creator>MattE</dc:creator>
    <dc:date>2021-05-13T15:02:57Z</dc:date>
    <item>
      <title>datetime string to date</title>
      <link>https://community.qlik.com/t5/Talend-Studio/datetime-string-to-date/m-p/2342848#M110667</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've got a column in a database which is a string like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;Tue May 11 2021 00:15:17 GMT+0000 (UTC)&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i want to turn this into a date like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;2021-05-11 00:15:17&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any prebuilt function to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 15:17:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/datetime-string-to-date/m-p/2342848#M110667</guid>
      <dc:creator>MattE</dc:creator>
      <dc:date>2021-05-12T15:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: datetime string to date</title>
      <link>https://community.qlik.com/t5/Talend-Studio/datetime-string-to-date/m-p/2342849#M110668</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.talend.com/r/F5VETDfL7KvVAbhEWhB8LQ/FbEV9SOAKgdqROp7dcKOQw" alt="https://help.talend.com/r/F5VETDfL7KvVAbhEWhB8LQ/FbEV9SOAKgdqROp7dcKOQw" target="_blank"&gt;https://help.talend.com/r/F5VETDfL7KvVAbhEWhB8LQ/FbEV9SOAKgdqROp7dcKOQw&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;TalendDate.parseDate()&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 15:28:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/datetime-string-to-date/m-p/2342849#M110668</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2021-05-12T15:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: datetime string to date</title>
      <link>https://community.qlik.com/t5/Talend-Studio/datetime-string-to-date/m-p/2342850#M110669</link>
      <description>&lt;P&gt;I've tried them all but can't find one which doesn't throw an error converting &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;B&gt;Tue May 11 2021 00:15:17 GMT+0000 (UTC) &lt;/B&gt;into &lt;B&gt;2021-05-11 00:15:17&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 15:30:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/datetime-string-to-date/m-p/2342850#M110669</guid>
      <dc:creator>MattE</dc:creator>
      <dc:date>2021-05-12T15:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: datetime string to date</title>
      <link>https://community.qlik.com/t5/Talend-Studio/datetime-string-to-date/m-p/2342851#M110670</link>
      <description>&lt;P&gt;You have to find the good pattern :&lt;/P&gt;&lt;P&gt;https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 16:53:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/datetime-string-to-date/m-p/2342851#M110670</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2021-05-12T16:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: datetime string to date</title>
      <link>https://community.qlik.com/t5/Talend-Studio/datetime-string-to-date/m-p/2342852#M110671</link>
      <description>&lt;P&gt;Thanks @guenneguez jeremy​&amp;nbsp; you set me on the right path. In the end i had to get rid of the text at the end and use the right pattern&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TalendDate.parseDate("E MMM dd yyyy HH:mm:ss",redemption.transaction_date.substring(0, redemption_rakuten.transaction_date.indexOf("GMT")).trim())&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 15:02:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/datetime-string-to-date/m-p/2342852#M110671</guid>
      <dc:creator>MattE</dc:creator>
      <dc:date>2021-05-13T15:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: datetime string to date</title>
      <link>https://community.qlik.com/t5/Talend-Studio/datetime-string-to-date/m-p/2342853#M110672</link>
      <description>&lt;P&gt;Glad you find by yourself &lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 16:13:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/datetime-string-to-date/m-p/2342853#M110672</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2021-05-13T16:13:56Z</dc:date>
    </item>
  </channel>
</rss>

