<?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: Trimming leading zeroes in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Trimming-leading-zeroes/m-p/2231903#M22041</link>
    <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LQPSAA4"&gt;@Matthew&lt;/A&gt;&amp;nbsp;, below one should also work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Integer.parseInt(row1.col1.replaceAll("[^\\d.]", ""))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 04 Nov 2019 05:57:57 GMT</pubDate>
    <dc:creator>manodwhb</dc:creator>
    <dc:date>2019-11-04T05:57:57Z</dc:date>
    <item>
      <title>Trimming leading zeroes</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trimming-leading-zeroes/m-p/2231898#M22036</link>
      <description>&lt;P&gt;How to get a decimal from a string&amp;nbsp;after trimming of leading zeros and non-numeric characters.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:12:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trimming-leading-zeroes/m-p/2231898#M22036</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T04:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: Trimming leading zeroes</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trimming-leading-zeroes/m-p/2231899#M22037</link>
      <description>&lt;P&gt;Can you give a typical example of the String you want to change?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 14:41:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trimming-leading-zeroes/m-p/2231899#M22037</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-31T14:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: Trimming leading zeroes</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trimming-leading-zeroes/m-p/2231900#M22038</link>
      <description>&lt;P&gt;Let the string be like&lt;/P&gt;&lt;P&gt;000AB1234&lt;/P&gt;&lt;P&gt;001234AB&lt;/P&gt;&lt;P&gt;I need the output as&lt;/P&gt;&lt;P&gt;1234&lt;/P&gt;&lt;P&gt;1234&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2019 06:28:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trimming-leading-zeroes/m-p/2231900#M22038</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-01T06:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Trimming leading zeroes</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trimming-leading-zeroes/m-p/2231901#M22039</link>
      <description>Integer.parseInt(text.replaceAll("[^0-9]", ""))</description>
      <pubDate>Fri, 01 Nov 2019 07:18:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trimming-leading-zeroes/m-p/2231901#M22039</guid>
      <dc:creator>akumar2301</dc:creator>
      <dc:date>2019-11-01T07:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Trimming leading zeroes</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trimming-leading-zeroes/m-p/2231902#M22040</link>
      <description>&lt;P&gt;I tried &lt;FONT size="2"&gt;Integer.parseInt(input.replaceAll(&lt;/FONT&gt;&lt;FONT color="#2a00ff" size="2"&gt;"[^0-9]"&lt;/FONT&gt;&lt;FONT size="2"&gt;, &lt;/FONT&gt;&lt;FONT color="#2a00ff" size="2"&gt;""&lt;/FONT&gt;&lt;FONT size="2"&gt;)) in tjavarow&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;But I'm getting null in my output&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Nov 2019 05:21:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trimming-leading-zeroes/m-p/2231902#M22040</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-04T05:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: Trimming leading zeroes</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Trimming-leading-zeroes/m-p/2231903#M22041</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LQPSAA4"&gt;@Matthew&lt;/A&gt;&amp;nbsp;, below one should also work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Integer.parseInt(row1.col1.replaceAll("[^\\d.]", ""))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Nov 2019 05:57:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Trimming-leading-zeroes/m-p/2231903#M22041</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2019-11-04T05:57:57Z</dc:date>
    </item>
  </channel>
</rss>

