<?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: String Handling in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/String-Handling/m-p/2343585#M111328</link>
    <description>&lt;P&gt;Hi gjeremy1617088143&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you soo much&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;  it worked, but could you explain what exactly u have written in the logic. It looks like regex but I don't how regex works..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Krishu&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 18 May 2021 07:56:19 GMT</pubDate>
    <dc:creator>krishu</dc:creator>
    <dc:date>2021-05-18T07:56:19Z</dc:date>
    <item>
      <title>String Handling</title>
      <link>https://community.qlik.com/t5/Talend-Studio/String-Handling/m-p/2343583#M111326</link>
      <description>&lt;P&gt;Hi Team&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement where the data is something like 010.040.103.222.1234.000 and the expected output should be &lt;/P&gt;&lt;P&gt;010.103.222.1234000. The basic idea is from the input i have to remove 5-8 characters (i.e, 040.) and in the last i.e. 20th position i have to remove '.'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;input: 010.040.103.222.1234.000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;expected output: 010.103.222.1234000&lt;/P&gt;&lt;P&gt;Any idea team!  Appreciate your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krishu&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:08:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/String-Handling/m-p/2343583#M111326</guid>
      <dc:creator>krishu</dc:creator>
      <dc:date>2024-11-16T00:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: String Handling</title>
      <link>https://community.qlik.com/t5/Talend-Studio/String-Handling/m-p/2343584#M111327</link>
      <description>&lt;P&gt;HI , (your string).replaceAll("(?&amp;lt;=(^\\d{1,3}))(\\.\\d{1,3})","").replaceAll("\\.(?=\\d{1,3}$)","")&lt;/P&gt;&lt;P&gt;Send me Love and Kudos&lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2021 07:36:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/String-Handling/m-p/2343584#M111327</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2021-05-18T07:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: String Handling</title>
      <link>https://community.qlik.com/t5/Talend-Studio/String-Handling/m-p/2343585#M111328</link>
      <description>&lt;P&gt;Hi gjeremy1617088143&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you soo much&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;  it worked, but could you explain what exactly u have written in the logic. It looks like regex but I don't how regex works..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Krishu&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2021 07:56:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/String-Handling/m-p/2343585#M111328</guid>
      <dc:creator>krishu</dc:creator>
      <dc:date>2021-05-18T07:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: String Handling</title>
      <link>https://community.qlik.com/t5/Talend-Studio/String-Handling/m-p/2343586#M111329</link>
      <description>&lt;P&gt;ok first i replace a (dot followed by 1 to 3 digits) preceded by 1 to 3 digits a the bergining of the string (Lookbehind regex expression)&lt;/P&gt;&lt;P&gt;then i replace a dot followed by 1 to 3 digits a the end of the string (Lookahead regex expression)&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.regular-expressions.info/lookaround.html" alt="https://www.regular-expressions.info/lookaround.html" target="_blank"&gt;https://www.regular-expressions.info/lookaround.html&lt;/A&gt; for more info about Lookbehind and Lookahead&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;^ is for begining of the string&lt;/P&gt;&lt;P&gt;$ is for end of he string&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2021 08:01:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/String-Handling/m-p/2343586#M111329</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2021-05-18T08:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: String Handling</title>
      <link>https://community.qlik.com/t5/Talend-Studio/String-Handling/m-p/2343587#M111330</link>
      <description>&lt;P&gt;Thank you very much&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt; &lt;span class="lia-unicode-emoji" title=":smiling_face_with_heart_eyes:"&gt;😍&lt;/span&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2021 08:04:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/String-Handling/m-p/2343587#M111330</guid>
      <dc:creator>krishu</dc:creator>
      <dc:date>2021-05-18T08:04:13Z</dc:date>
    </item>
  </channel>
</rss>

