<?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 use regex in row seperator field in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/use-regex-in-row-seperator-field/m-p/2372785#M135578</link>
    <description>&lt;P&gt;Hi&lt;BR /&gt;I'm reading a text file.&lt;BR /&gt;In that text file data is like this&lt;BR /&gt;AB=100&lt;BR /&gt;sjdhxajshejhs&lt;BR /&gt;jasdhrxajsdhx&lt;BR /&gt;HJ=200&lt;BR /&gt;jehxmjehdr&lt;BR /&gt;djkejhmxdfjhe&lt;BR /&gt;&lt;BR /&gt;And so on. So I want to consider "AB=" as a row separator. But as you can see only "=" is constant and two alpha characters before that are not constant like this AB= and HJ=&lt;BR /&gt;&lt;BR /&gt;Is there any way I could use regex in row separator field like this&amp;nbsp;&amp;nbsp;&amp;nbsp; Regexp("[a-zA-Z]{2}")+"="&lt;BR /&gt;I've tried but its not working, Any suggestions please ?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;/P&gt;</description>
    <pubDate>Fri, 04 Nov 2016 12:30:41 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-11-04T12:30:41Z</dc:date>
    <item>
      <title>use regex in row seperator field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/use-regex-in-row-seperator-field/m-p/2372785#M135578</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;I'm reading a text file.&lt;BR /&gt;In that text file data is like this&lt;BR /&gt;AB=100&lt;BR /&gt;sjdhxajshejhs&lt;BR /&gt;jasdhrxajsdhx&lt;BR /&gt;HJ=200&lt;BR /&gt;jehxmjehdr&lt;BR /&gt;djkejhmxdfjhe&lt;BR /&gt;&lt;BR /&gt;And so on. So I want to consider "AB=" as a row separator. But as you can see only "=" is constant and two alpha characters before that are not constant like this AB= and HJ=&lt;BR /&gt;&lt;BR /&gt;Is there any way I could use regex in row separator field like this&amp;nbsp;&amp;nbsp;&amp;nbsp; Regexp("[a-zA-Z]{2}")+"="&lt;BR /&gt;I've tried but its not working, Any suggestions please ?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2016 12:30:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/use-regex-in-row-seperator-field/m-p/2372785#M135578</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-04T12:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: use regex in row seperator field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/use-regex-in-row-seperator-field/m-p/2372786#M135579</link>
      <description>Sure You must look in different direction&lt;BR /&gt;because Your next question (even if You found solution) - separator will be excluded from data, and You will have - 100, 200 but do not know - what is it</description>
      <pubDate>Fri, 04 Nov 2016 23:15:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/use-regex-in-row-seperator-field/m-p/2372786#M135579</guid>
      <dc:creator>vapukov</dc:creator>
      <dc:date>2016-11-04T23:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: use regex in row seperator field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/use-regex-in-row-seperator-field/m-p/2372787#M135580</link>
      <description>Any other suggestion ?</description>
      <pubDate>Sat, 05 Nov 2016 04:40:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/use-regex-in-row-seperator-field/m-p/2372787#M135580</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-05T04:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: use regex in row seperator field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/use-regex-in-row-seperator-field/m-p/2372788#M135581</link>
      <description>Hi vapukovis&lt;BR /&gt;I'm using like this&lt;BR /&gt;&lt;A href="http://prnt.sc/d3b862" rel="nofollow noopener noreferrer"&gt;http://prnt.sc/d3b862&lt;/A&gt;&lt;BR /&gt;But getting this error&lt;BR /&gt;The constructor FileInputDelimited(String, String, String, Pattern, boolean, int, int, int, int, boolean) is undefined&lt;BR /&gt;&lt;BR /&gt;Any idea ?</description>
      <pubDate>Sat, 05 Nov 2016 07:52:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/use-regex-in-row-seperator-field/m-p/2372788#M135581</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-05T07:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: use regex in row seperator field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/use-regex-in-row-seperator-field/m-p/2372789#M135582</link>
      <description>as variant - split to separate files using "=" as filter
&lt;BR /&gt;
&lt;BR /&gt;do all in loop - split, than process each files in folder as single records
&lt;BR /&gt;
&lt;BR /&gt;other variant -&amp;nbsp;
&lt;BR /&gt;replace all \n as "," split row in loop (until not finish) - locate = and take substring up to (index of = -2), cut the string and etc - what more easy depends from feature tasks</description>
      <pubDate>Sun, 06 Nov 2016 09:47:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/use-regex-in-row-seperator-field/m-p/2372789#M135582</guid>
      <dc:creator>vapukov</dc:creator>
      <dc:date>2016-11-06T09:47:37Z</dc:date>
    </item>
  </channel>
</rss>

