<?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: Data from MemoText with tExtractRegexFields in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Data-from-MemoText-with-tExtractRegexFields/m-p/2303993#M75813</link>
    <description>&lt;P&gt;Great, thanks for your feedback!&lt;/P&gt;</description>
    <pubDate>Thu, 02 Jun 2022 06:54:01 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-06-02T06:54:01Z</dc:date>
    <item>
      <title>Data from MemoText with tExtractRegexFields</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Data-from-MemoText-with-tExtractRegexFields/m-p/2303988#M75808</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following situation:&lt;/P&gt;&lt;P&gt;using an API call I receive an memoText field, which contains the following data (among others):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;----&lt;/P&gt;&lt;P&gt;Locatie op de terminal&lt;/P&gt;&lt;P&gt;- Kade thv loods 12&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shift&lt;/P&gt;&lt;P&gt;- Avond&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dienst&lt;/P&gt;&lt;P&gt;- Ploeg B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Afdeling&lt;/P&gt;&lt;P&gt;- Hout, staal &amp;amp; metaal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Soort incident&lt;/P&gt;&lt;P&gt;- Bijna ongeval&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Geconstateerd door? (overslaan bij ongeval met letsel)&lt;/P&gt;&lt;P&gt;- Niemand&lt;/P&gt;&lt;P&gt;-----&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to extract the data from this field using tExtractRegexFields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I want to retrieve the data from 'Locatie op de terminal' I can use regex   Locatie op de terminal\n.*  and it will retrieve both the lines which is good. But I allso want to retrieve the lines for Shift, using Shift\n.*  for regex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to I get both values mapped to two different output colums of the tExtractRegexFields component ?? So that outputColumn1 has the value of 'Locatie op de terminal&lt;/P&gt;&lt;P&gt;- Kade thv loods 12' and outputColumn2 has the value of 'Shift - Avond' and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What will happen if one of the values doesn't not exist within the memotext field ? can it still be parsed ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you can help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jacco&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 May 2022 11:15:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Data-from-MemoText-with-tExtractRegexFields/m-p/2303988#M75808</guid>
      <dc:creator>Jacco_De_Zwart</dc:creator>
      <dc:date>2022-05-25T11:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: Data from MemoText with tExtractRegexFields</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Data-from-MemoText-with-tExtractRegexFields/m-p/2303989#M75809</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Find a online regext tester such as https://regexr.com/, learn and test your regex. If the value does not exist, the column will has a null value output. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;</description>
      <pubDate>Thu, 26 May 2022 02:18:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Data-from-MemoText-with-tExtractRegexFields/m-p/2303989#M75809</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-05-26T02:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: Data from MemoText with tExtractRegexFields</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Data-from-MemoText-with-tExtractRegexFields/m-p/2303990#M75810</link>
      <description>&lt;P&gt;shong,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use &lt;A href="https://regex101.com/" alt="https://regex101.com/" target="_blank"&gt;regex101: build, test, and debug regex&lt;/A&gt; to test my regular expressions and they work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I miss is how the ExtractRegexFields component works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got it working using the regular expressions, but for every field the component returns one row.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So using this expression :&lt;/P&gt;&lt;P&gt;"(Locatie op de terminal\\s*\n.*)|(Shift\\s*\n.*)|(Afdeling\\s*\n. *)"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Results in three rows and not one row with three fields filled with the values&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But reading the documentation of Talend ExtractRegexFields and seeing the example, it suggests that it delivers one row with the fields. But not in my case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What can this be ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jacco&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 06:34:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Data-from-MemoText-with-tExtractRegexFields/m-p/2303990#M75810</guid>
      <dc:creator>Jacco_De_Zwart</dc:creator>
      <dc:date>2022-05-27T06:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: Data from MemoText with tExtractRegexFields</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Data-from-MemoText-with-tExtractRegexFields/m-p/2303991#M75811</link>
      <description>&lt;P&gt;@Jacco de Zwart​, tExtractRegexFields output one row with three fields with the values, if you want to split the values to be multiple rows, use tNormalize component after tExtractRegexFields, please read the component documentation and learn this component, let me know if you have any questions. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 02:50:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Data-from-MemoText-with-tExtractRegexFields/m-p/2303991#M75811</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-05-31T02:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Data from MemoText with tExtractRegexFields</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Data-from-MemoText-with-tExtractRegexFields/m-p/2303992#M75812</link>
      <description>&lt;P&gt;@Shicong Hong​&amp;nbsp;Thank for you reply. I have made some adjustments and it works now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jacco&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jun 2022 05:55:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Data-from-MemoText-with-tExtractRegexFields/m-p/2303992#M75812</guid>
      <dc:creator>Jacco_De_Zwart</dc:creator>
      <dc:date>2022-06-02T05:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Data from MemoText with tExtractRegexFields</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Data-from-MemoText-with-tExtractRegexFields/m-p/2303993#M75813</link>
      <description>&lt;P&gt;Great, thanks for your feedback!&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jun 2022 06:54:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Data-from-MemoText-with-tExtractRegexFields/m-p/2303993#M75813</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-06-02T06:54:01Z</dc:date>
    </item>
  </channel>
</rss>

