<?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: Remove Duplicated from the record in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213178#M10535</link>
    <description>&lt;P&gt;it showing the errors ,see in attachment&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LxJt"&gt;error.PNG&lt;/A&gt;</description>
    <pubDate>Fri, 28 Feb 2020 13:48:28 GMT</pubDate>
    <dc:creator>Vijay_K_N</dc:creator>
    <dc:date>2020-02-28T13:48:28Z</dc:date>
    <item>
      <title>Remove Duplicated from the record</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213176#M10533</link>
      <description>&lt;P&gt;I have source like this&lt;/P&gt;&lt;P&gt;record&lt;/P&gt;&lt;P&gt;11&lt;/P&gt;&lt;P&gt;1122&lt;/P&gt;&lt;P&gt;112233&lt;/P&gt;&lt;P&gt;11223344&lt;/P&gt;&lt;P&gt;i want output like&amp;nbsp;&lt;/P&gt;&lt;P&gt;record&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;12&lt;/P&gt;&lt;P&gt;123&lt;/P&gt;&lt;P&gt;1234&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2020 04:35:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213176#M10533</guid>
      <dc:creator>Vijay_K_N</dc:creator>
      <dc:date>2020-02-25T04:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Duplicated from the record</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213177#M10534</link>
      <description>Create a routine and add this function to transform it. 
&lt;BR /&gt;public static String removeDupsInPlace(String word) { 
&lt;BR /&gt; final StringBuilder output = new StringBuilder(); 
&lt;BR /&gt; 
&lt;BR /&gt; for (int i = 0; i &amp;lt; word.length(); i++) { 
&lt;BR /&gt; String character = word.substring(i, i + 1); 
&lt;BR /&gt; if (output.indexOf(character) &amp;lt; 0) // if not contained 
&lt;BR /&gt; output.append(character); 
&lt;BR /&gt; } 
&lt;BR /&gt; return output.toString(); 
&lt;BR /&gt; } 
&lt;BR /&gt; 
&lt;BR /&gt;Read the data as a string and pass it to the function. 
&lt;BR /&gt; 
&lt;BR /&gt;Regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Thu, 27 Feb 2020 08:35:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213177#M10534</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-27T08:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Duplicated from the record</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213178#M10535</link>
      <description>&lt;P&gt;it showing the errors ,see in attachment&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LxJt"&gt;error.PNG&lt;/A&gt;</description>
      <pubDate>Fri, 28 Feb 2020 13:48:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213178#M10535</guid>
      <dc:creator>Vijay_K_N</dc:creator>
      <dc:date>2020-02-28T13:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Duplicated from the record</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213179#M10536</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you routine must be inside class&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 15:02:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213179#M10536</guid>
      <dc:creator>uzix</dc:creator>
      <dc:date>2020-02-28T15:02:52Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Duplicated from the record</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213180#M10537</link>
      <description>&lt;P&gt;sorry i have zero knowledge in java can u clarify with screenshot&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 15:25:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213180#M10537</guid>
      <dc:creator>Vijay_K_N</dc:creator>
      <dc:date>2020-02-28T15:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Duplicated from the record</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213181#M10538</link>
      <description>&lt;P&gt;in talend&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;see routine.jpg&lt;/P&gt; 
&lt;P&gt;-&amp;gt; code&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;-&amp;gt; routines&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; --&amp;gt; "create new "&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;name it whatever you want&lt;/P&gt; 
&lt;P&gt;in my case is "test"&lt;/P&gt; 
&lt;P&gt;inside class "test"&lt;/P&gt; 
&lt;P&gt;paste the function that&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/00539000004XsnJAAS"&gt;@shong&lt;/A&gt;&amp;nbsp;as made available to you_:&lt;/P&gt; 
&lt;P&gt;see routine2.jpg&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;you can use your function in a tjavarow .&lt;/P&gt; 
&lt;P&gt;example:&lt;/P&gt; 
&lt;P&gt;if data source is file , and you want to use the function in 3 cloumns of input data source:&lt;/P&gt; 
&lt;P&gt;see routine3.jpg&lt;/P&gt; 
&lt;P&gt;the ouptut will be the value of input data transformed by the function.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lxd7"&gt;routine3.jpg&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LxYN"&gt;routine2.jpg&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LxNg"&gt;routine.jpg&lt;/A&gt;</description>
      <pubDate>Fri, 28 Feb 2020 16:17:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213181#M10538</guid>
      <dc:creator>uzix</dc:creator>
      <dc:date>2020-02-28T16:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Duplicated from the record</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213182#M10539</link>
      <description>&lt;BR /&gt;
&lt;BR /&gt;Array.from(new Set(yourString)).join('')
&lt;BR /&gt;
&lt;BR /&gt;If Array class not available try below regex
&lt;BR /&gt;
&lt;BR /&gt;yourString.replace(/(.)(?=.*\1)/g, "")
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Feb 2020 17:55:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213182#M10539</guid>
      <dc:creator>akumar2301</dc:creator>
      <dc:date>2020-02-28T17:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Duplicated from the record</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213183#M10540</link>
      <description>&lt;P&gt;Thanks for ur reply...its working&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 05:50:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213183#M10540</guid>
      <dc:creator>Vijay_K_N</dc:creator>
      <dc:date>2020-03-03T05:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Duplicated from the record</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213184#M10541</link>
      <description>&lt;P&gt;thanks for ur neat explanation&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 05:50:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213184#M10541</guid>
      <dc:creator>Vijay_K_N</dc:creator>
      <dc:date>2020-03-03T05:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Duplicated from the record</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213185#M10542</link>
      <description>&lt;P&gt;i dont have knowledge on regular expressions bro&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 05:52:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Remove-Duplicated-from-the-record/m-p/2213185#M10542</guid>
      <dc:creator>Vijay_K_N</dc:creator>
      <dc:date>2020-03-03T05:52:59Z</dc:date>
    </item>
  </channel>
</rss>

