<?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: Splitting of String in Talend in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357095#M122473</link>
    <description>&lt;P&gt;Hey hi, thanks for suggesting this way. I tried it but it's storing the 1st part of the string whereas I'm in need of the later&lt;/P&gt;</description>
    <pubDate>Thu, 17 Aug 2023 19:25:26 GMT</pubDate>
    <dc:creator>RP1629548713</dc:creator>
    <dc:date>2023-08-17T19:25:26Z</dc:date>
    <item>
      <title>Splitting of String in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357091#M122469</link>
      <description>&lt;P&gt;Hi All ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need a small help . I have an input ,e.g : ABC : 123 which is completely in string as it is a  file . The length of this input may vary or i can say is dynamic. I need to extract only the right hand part from based on the delimiter which is ": " and whatever comes after the delimiter i need to store. The input that comes before the delimiter needs to be excluded . Can you please help me ? I tried substring and lastIndexOf but this seems useful when you have fixed length,i donot have fixed length input . It can be of any length. if anyone can please suggest some java code it will be great. textractdelimitedfield would not help in my scenario.Only tmap or javacode would .&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 21:28:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357091#M122469</guid>
      <dc:creator>RP1629548713</dc:creator>
      <dc:date>2024-11-15T21:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting of String in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357092#M122470</link>
      <description>&lt;P&gt;You can use a tNormalize component and put ":" as your delimiteur&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 12:17:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357092#M122470</guid>
      <dc:creator>kakooo16</dc:creator>
      <dc:date>2023-08-17T12:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting of String in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357093#M122471</link>
      <description>&lt;P&gt;No ,I have already tried it ,doesnt help. I would rather require a regex or a routine&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 13:51:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357093#M122471</guid>
      <dc:creator>RP1629548713</dc:creator>
      <dc:date>2023-08-17T13:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting of String in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357094#M122472</link>
      <description>&lt;P&gt;Hello @Riya P​&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Supposing this String is in a column called "content" coming from a input called row1, what if you try the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;row1.content.substring(row1.content.indexOf(":"))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The indexOf method returns the index of the first occurrence of ":" inside the source String and passes this index to the substring method, which you get all the String content after ":"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can add +1 to this index to exclude the ":" from the result:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;row1.content.substring(row1.content.indexOf(":")+1)&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 14:41:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357094#M122472</guid>
      <dc:creator>anselmopeixoto</dc:creator>
      <dc:date>2023-08-17T14:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting of String in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357095#M122473</link>
      <description>&lt;P&gt;Hey hi, thanks for suggesting this way. I tried it but it's storing the 1st part of the string whereas I'm in need of the later&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 19:25:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357095#M122473</guid>
      <dc:creator>RP1629548713</dc:creator>
      <dc:date>2023-08-17T19:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting of String in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357096#M122474</link>
      <description>&lt;P&gt;Along the same lines as what Ansel suggested, assuming your string was in Notes, you might try the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;StringHandling.RIGHT(row10.Notes,((int)StringHandling.LEN(row10.Notes))-((int)row10.Notes.indexOf(":"))-1)&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 20:22:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357096#M122474</guid>
      <dc:creator>d_o</dc:creator>
      <dc:date>2023-08-17T20:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting of String in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357097#M122475</link>
      <description>&lt;P&gt;Works &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Thanks !&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 08:01:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Splitting-of-String-in-Talend/m-p/2357097#M122475</guid>
      <dc:creator>RP1629548713</dc:creator>
      <dc:date>2023-08-18T08:01:55Z</dc:date>
    </item>
  </channel>
</rss>

