<?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: Parse text (RegEx ParseAll ?) in Qlik Automate</title>
    <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060862#M1680</link>
    <description>&lt;P&gt;Got it done myself. Thanks.&lt;/P&gt;</description>
    <pubDate>Mon, 17 Apr 2023 08:59:15 GMT</pubDate>
    <dc:creator>xyz_1011</dc:creator>
    <dc:date>2023-04-17T08:59:15Z</dc:date>
    <item>
      <title>Parse text (RegEx ParseAll ?)</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060136#M1666</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;i have a regular Qlik script file. Among other script content, the script also includes multiple $(Must_Includes) statements.&lt;/P&gt;
&lt;P&gt;Within one of my automations, i am receiving this file and i managed to get to its content (basically a long string). From this string I want to&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;extract all occurances of include statements in a given file and and create a list of include statements - i.e., like this:&amp;nbsp; $(Must_Include=$(vModulesRoot)SALES\Revenue.qvs);, $(Must_Include=$(vModulesRoot)SALES\Customer.qvs);&lt;BR /&gt;Would i be able to do this with a regex() ? Or any other way in an automation ?&lt;/LI&gt;
&lt;LI&gt;Once i have extracted all includes and build a list of them, i would like to loop over this list of include statements and
&lt;OL&gt;
&lt;LI&gt;&amp;nbsp;get the filename (following the above example: Revenue.qvs and Customer.qvs) of every include statement and&lt;/LI&gt;
&lt;LI&gt;next to it: also the directory (following the above example: SALES)&lt;/LI&gt;
&lt;/OL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Any advise on how to get there wohld be greatly apreciated!&lt;/P&gt;
&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2023 15:32:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060136#M1666</guid>
      <dc:creator>xyz_1011</dc:creator>
      <dc:date>2023-04-13T15:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: Parse text (RegEx ParseAll ?)</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060392#M1667</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/134857"&gt;@xyz_1011&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me try to understand the workflow.&lt;/P&gt;
&lt;P&gt;So you are getting the script content using the Get Load Script block and want to get all the include statements from the script, add them to the list and loop over this list, get the filename and folder name from each item.&lt;/P&gt;
&lt;P&gt;Do you have the automation on which you are working?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 07:01:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060392#M1667</guid>
      <dc:creator>AfeefaTk</dc:creator>
      <dc:date>2023-04-14T07:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Parse text (RegEx ParseAll ?)</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060506#M1668</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/134179"&gt;@AfeefaTk&lt;/a&gt;&amp;nbsp;- i believe outlining the whole use case would be something for a dedicated call (which I'd be happy to jump on if you like &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; ) rather than this forum post. What i am after is part of a complex use case. But let me try to illustrate with the attached (simplified) example automation as well as the following example description:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;I have a script (QVS file which i am retreiving from a git lab repo). The script looks something like this (might vary from script to script):&lt;BR /&gt;&lt;FONT size="2"&gt;&lt;EM&gt;&lt;BR /&gt;$(Must_Include=$(vModulesRoot)03_SALES\MOD_Revenue.qvs);&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&lt;EM&gt;call StoreIntoSDL ('MOD', 'Revenue', '03_SALES', 'Revenue');&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&lt;EM&gt;call CreateMetaData ('Revenue', 'GEN_MOD_Revenue.qvs', 'MOD_Revenue.qvs', '03_SALES');&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&lt;EM&gt;//=========================================================================================&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&lt;EM&gt;// Trace ********* started...&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&lt;EM&gt;//=========================================================================================&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&lt;EM&gt;$(Must_Include=$(vModulesRoot)04_MARKETING\MOD_Campaign.qvs);&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&lt;EM&gt;call StoreIntoSDL ('MOD', 'Campaign', '04_MARKETING', 'Campaign');&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&lt;EM&gt;call CreateMetaData ('Campaign', 'GEN_MOD_Campaign.qvs', 'MOD_Campaign.qvs', '04_MARKETING');&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;I base decode the QVS file to get the content as a string&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;From this string i want to extract all include statements. To be specific, i want to create another string (iedeally a list) with every extracted include statement, which looks like this (every item represents a path in a gitlab repo):&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&lt;EM&gt;04_MARKETING\MOD_Campaign.qvs&lt;BR /&gt;03_SALES\MOD_Revenue.qvs&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="2"&gt;&lt;FONT size="3"&gt;After that i want to iterate&amp;nbsp;over every item i built in the previous step and use a GitLab Get File From&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;&lt;FONT size="3"&gt; Repository to fetch the file...&lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;FONT size="4"&gt;I hope, what i am after became a bit clearer...in essence, what i am struggling with is: Extract the substring from every include and then iterate over every extraction.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Thanks a lot upfron!&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 11:47:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060506#M1668</guid>
      <dc:creator>xyz_1011</dc:creator>
      <dc:date>2023-04-14T11:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: Parse text (RegEx ParseAll ?)</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060513#M1669</link>
      <description>&lt;P&gt;Im far from a regexp expert but rather good a googling &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; so what about apply a regExp parse all function on the string:&lt;/P&gt;
&lt;PRE&gt;(?&amp;lt;=Must_Include=)(.*)(?=;)&lt;/PRE&gt;
&lt;P&gt;I tested it with some examples in a variable (vString) with the output block with the following code (formula parsing off):&lt;/P&gt;
&lt;PRE&gt;{regexparseall: {$.vString}, '(?&amp;lt;=Must_Include=)(.*)(?=;)'}&lt;/PRE&gt;
&lt;P&gt;The output will not include Must_Include and the semi-colon, the regExp takes the string between these two strings.&amp;nbsp; It also includes a ) at the end as the regexp fails if I use ); instead of ; as the end-string.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 12:08:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060513#M1669</guid>
      <dc:creator>blaise</dc:creator>
      <dc:date>2023-04-14T12:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Parse text (RegEx ParseAll ?)</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060520#M1670</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/134857"&gt;@xyz_1011&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This formula&amp;nbsp;works&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;{regexparseall: {$.vString}, '(?&amp;lt;=Must_Include=)(.*)(?=;)'}&lt;/PRE&gt;
&lt;P&gt;But you also need to remove this&amp;nbsp;&lt;SPAN&gt;$(vModulesRoot) from the path right?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 12:38:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060520#M1670</guid>
      <dc:creator>AfeefaTk</dc:creator>
      <dc:date>2023-04-14T12:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: Parse text (RegEx ParseAll ?)</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060538#M1671</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/134857"&gt;@xyz_1011&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have tried this using custom code block.&lt;/P&gt;
&lt;P&gt;Please take a look at the json file and let me know if that works for you.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 13:35:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060538#M1671</guid>
      <dc:creator>AfeefaTk</dc:creator>
      <dc:date>2023-04-14T13:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: Parse text (RegEx ParseAll ?)</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060545#M1672</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/134857"&gt;@xyz_1011&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have also done this using regex parse all formula.&lt;/P&gt;
&lt;P&gt;Hope this works.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 13:45:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060545#M1672</guid>
      <dc:creator>AfeefaTk</dc:creator>
      <dc:date>2023-04-14T13:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Parse text (RegEx ParseAll ?)</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060571#M1673</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/134179"&gt;@AfeefaTk&lt;/a&gt;&amp;nbsp; Very elegant! I had no clue that there is a way to work with PHP. This is cool!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(obviously, it also does the job &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; Thanks!!)&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 14:35:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060571#M1673</guid>
      <dc:creator>xyz_1011</dc:creator>
      <dc:date>2023-04-14T14:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Parse text (RegEx ParseAll ?)</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060575#M1674</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/134857"&gt;@xyz_1011&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would suggest you try my recent automation which uses the regex formula by replacing the custom code block. This should be a more clean solution than the custom code one.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 14:48:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060575#M1674</guid>
      <dc:creator>AfeefaTk</dc:creator>
      <dc:date>2023-04-14T14:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: Parse text (RegEx ParseAll ?)</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060820#M1679</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/134179"&gt;@AfeefaTk&lt;/a&gt;&amp;nbsp; thanks again for your help. I am running into an issue though, when trying to get a file from my repo after parsing the includes:&lt;/P&gt;
&lt;P&gt;1.&amp;nbsp; storing every extracted &amp;amp; parsed include ina variable:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="xyz_1011_1-1681716546658.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104984i304134A406E773F8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="xyz_1011_1-1681716546658.png" alt="xyz_1011_1-1681716546658.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;2. trying to get a file from my repo using this variable:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="xyz_1011_2-1681716624310.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104985i6A284D16B2DDB22D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="xyz_1011_2-1681716624310.png" alt="xyz_1011_2-1681716624310.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;3. Runn ing into this error, where the / seems to cannot be decoded properly:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="xyz_1011_3-1681716763222.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/104987i7B92A2E682117A87/image-size/medium?v=v2&amp;amp;px=400" role="button" title="xyz_1011_3-1681716763222.png" alt="xyz_1011_3-1681716763222.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Any idea how to solve this ?&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>Mon, 17 Apr 2023 07:33:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060820#M1679</guid>
      <dc:creator>xyz_1011</dc:creator>
      <dc:date>2023-04-17T07:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: Parse text (RegEx ParseAll ?)</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060862#M1680</link>
      <description>&lt;P&gt;Got it done myself. Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 08:59:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060862#M1680</guid>
      <dc:creator>xyz_1011</dc:creator>
      <dc:date>2023-04-17T08:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Parse text (RegEx ParseAll ?)</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060887#M1681</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/134857"&gt;@xyz_1011&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Based on your recent query:&lt;/P&gt;
&lt;P&gt;Regarding to the accepted solution in&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Application-Automation/Parse-text-RegEx-ParseAll/td-p/2060136" target="_self"&gt;my post&lt;/A&gt;, i realized, that ideally i not only need the includes() extracted and parsed, but also every call StoreIntoSDL() line following the include. Is it possible that the custom code segment gives me two variables:&lt;/P&gt;
&lt;P&gt;1. the extracted and parsed include()&lt;/P&gt;
&lt;P&gt;2. the call StoreIntoSDL line that comes after ?&lt;/P&gt;
&lt;P&gt;Meaning, given this script piece:&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;EM&gt;$(Must_Include=$(vModulesRoot)03_SALES\MOD_Revenue.qvs);&lt;/EM&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;&lt;EM&gt;call StoreIntoSDL ('MOD', 'Revenue', '03_SALES', 'Revenue');&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;I would like to get the following items back from the custom code block:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;vInclude =&amp;nbsp;&lt;FONT size="2"&gt;&lt;EM&gt;30_SALES\MOD_Revenue.qvs&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#FF0000"&gt;(&amp;lt;-- that works already in your solution)&lt;/FONT&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;vStore =&amp;nbsp;&lt;FONT size="2"&gt;&lt;EM&gt;call StoreIntoSDL ('MOD', 'Revenue', '03_SALES', 'Revenue');&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#FF0000"&gt;(&amp;lt;-- this would need to come on top)&lt;/FONT&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;I am attaching automation json for your reference.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Hope this works!!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Thanks&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 09:47:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060887#M1681</guid>
      <dc:creator>AfeefaTk</dc:creator>
      <dc:date>2023-04-17T09:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Parse text (RegEx ParseAll ?)</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060901#M1683</link>
      <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/134179"&gt;@AfeefaTk&lt;/a&gt;&amp;nbsp; - this does al,most what i need. However, i am not able to process the output of each iteration together. Meaning: In the first loop i expect to receive the first parsed include() and the first extracted call() then i do something with this output. In the second iteration the secon parsed include() together with the second call(), then i do something with this output ... Hope, this makes sense. Thanks again!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 10:05:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060901#M1683</guid>
      <dc:creator>xyz_1011</dc:creator>
      <dc:date>2023-04-17T10:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Parse text (RegEx ParseAll ?)</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060934#M1684</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/134857"&gt;@xyz_1011&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please find the attached automation&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 10:57:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Parse-text-RegEx-ParseAll/m-p/2060934#M1684</guid>
      <dc:creator>AfeefaTk</dc:creator>
      <dc:date>2023-04-17T10:57:49Z</dc:date>
    </item>
  </channel>
</rss>

