<?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 Comma delimited Column in multiple columns. The index of the element in the string has to be the column number. in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Splitting-Comma-delimited-Column-in-multiple-columns-The-index/m-p/2295975#M68683</link>
    <description>&lt;P&gt;Hello and thank you for the solution. It works perfect with the "tFixedFlowInput" but when I am trying to use it with the "tInput_File_InputExcel" it gives me a strange error which I could not debug still. I am working into that now. Thank you again for the solution, really works like a charm.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: I have solved the error. Everything works like a charm. Thanks a lot for the solution, never knew that there is a "contains" around there.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards, Alex.&lt;/P&gt;</description>
    <pubDate>Wed, 25 Apr 2018 14:02:11 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-04-25T14:02:11Z</dc:date>
    <item>
      <title>Splitting Comma delimited Column in multiple columns. The index of the element in the string has to be the column number.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Splitting-Comma-delimited-Column-in-multiple-columns-The-index/m-p/2295973#M68681</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have started to work with Talend around two-three weeks ago and I have encountered a small issue that I can't really overcome. I have a column in an Excel file which looks like: "&lt;SPAN&gt;Word&lt;/SPAN&gt;1, &lt;SPAN&gt;Word&lt;/SPAN&gt;2, Word3" which I want to split up in Talend in three column. All nice and good here, very easy. But sometimes the column data could look like this: "&lt;SPAN&gt;Word&lt;/SPAN&gt;1, Word3" or "&lt;SPAN&gt;Word&lt;/SPAN&gt;2, &lt;SPAN&gt;Word&lt;/SPAN&gt;3" and I have not found a way to put those values in the right column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;Input:&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;|Word_Input&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;|Word&lt;/SPAN&gt;1, Word2, &lt;SPAN&gt;Word3|&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;|Word2&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;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;|Word2, Word3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;|Word1, Word3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;|Word3&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;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;Desired Output:&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Column1|Column2|Column3&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Word1&amp;nbsp; &amp;nbsp; |Word2&amp;nbsp; &amp;nbsp; |Word3&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"blank"&amp;nbsp; &amp;nbsp; |Word2&amp;nbsp; &amp;nbsp; |"blank"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"blank"&amp;nbsp; &amp;nbsp; |Word2&amp;nbsp; &amp;nbsp; |Word3&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Word1&amp;nbsp; &amp;nbsp; &amp;nbsp;|"blank"&amp;nbsp; &amp;nbsp;|Word3&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"blank"&amp;nbsp; &amp;nbsp; &amp;nbsp;|"blank"&amp;nbsp; &amp;nbsp;|Word3&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;Actual Output:&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Column1|Column2|Column3&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Word1&amp;nbsp; &amp;nbsp; |Word2&amp;nbsp; &amp;nbsp; |Word3&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Word2&amp;nbsp; &amp;nbsp; |"blank"&amp;nbsp; &amp;nbsp; |"blank"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Word2&amp;nbsp; &amp;nbsp; |Word3&amp;nbsp; &amp;nbsp; &amp;nbsp;|&lt;/SPAN&gt;&lt;SPAN&gt;"blank"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Word1&amp;nbsp; &amp;nbsp; |Word3&amp;nbsp; &amp;nbsp; &amp;nbsp;|"blank"&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Word3&amp;nbsp; &amp;nbsp; |"blank"&amp;nbsp; &amp;nbsp; &amp;nbsp;|"blank"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;And so, my question is that if this can be achieved with Talend functions( as I definitely could not achieve what I wanted by myself)&amp;nbsp;&amp;nbsp;or should I go all Raw Java coding into this ?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for your time.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 11:02:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Splitting-Comma-delimited-Column-in-multiple-columns-The-index/m-p/2295973#M68681</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-25T11:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting Comma delimited Column in multiple columns. The index of the element in the string has to be the column number.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Splitting-Comma-delimited-Column-in-multiple-columns-The-index/m-p/2295974#M68682</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LOLXAA4"&gt;@LoA02&lt;/A&gt;,are you looking for the below output?&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled.png" style="width: 781px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lwpo.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/141134i8A33639DAA133F15/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lwpo.png" alt="0683p000009Lwpo.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled.png" style="width: 999px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LwXU.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/136374i2108274A5A307D4B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LwXU.png" alt="0683p000009LwXU.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 11:57:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Splitting-Comma-delimited-Column-in-multiple-columns-The-index/m-p/2295974#M68682</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2018-04-25T11:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting Comma delimited Column in multiple columns. The index of the element in the string has to be the column number.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Splitting-Comma-delimited-Column-in-multiple-columns-The-index/m-p/2295975#M68683</link>
      <description>&lt;P&gt;Hello and thank you for the solution. It works perfect with the "tFixedFlowInput" but when I am trying to use it with the "tInput_File_InputExcel" it gives me a strange error which I could not debug still. I am working into that now. Thank you again for the solution, really works like a charm.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;EDIT: I have solved the error. Everything works like a charm. Thanks a lot for the solution, never knew that there is a "contains" around there.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards, Alex.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 14:02:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Splitting-Comma-delimited-Column-in-multiple-columns-The-index/m-p/2295975#M68683</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-25T14:02:11Z</dc:date>
    </item>
  </channel>
</rss>

