<?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: Is there a comparable function in sas like regexp_extract? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937456#M368362</link>
    <description>&lt;P&gt;Can you please give a few examples (just 5-10) of the full string you are trying to parse?&amp;nbsp; It will help people help you.&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jul 2024 13:53:04 GMT</pubDate>
    <dc:creator>Quentin</dc:creator>
    <dc:date>2024-07-29T13:53:04Z</dc:date>
    <item>
      <title>Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937423#M368342</link>
      <description>&lt;P&gt;I have this string:&amp;nbsp;"Cdtr":{"Nm":"DEUTSCHE BANK"}&lt;/P&gt;
&lt;P&gt;How can I implement this in SAS like the function&lt;/P&gt;
&lt;P&gt;regexp_extract(fulltxinf_intx, '"Cdtr":."Nm":"([^"]+)', 1) as String_Ort&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 11:11:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937423#M368342</guid>
      <dc:creator>Hoibai</dc:creator>
      <dc:date>2024-07-29T11:11:08Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937426#M368345</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/463573"&gt;@Hoibai&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please tell us what this regexp_extract function does.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 11:14:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937426#M368345</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-07-29T11:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937428#M368348</link>
      <description>&lt;P&gt;The function returns me the result &lt;SPAN&gt;&lt;STRONG&gt;DEUTSCHE BANK&lt;/STRONG&gt;,&amp;nbsp;&lt;/SPAN&gt;that the parameters &lt;STRONG&gt;Cdtr":{"Nm":&amp;nbsp;&lt;/STRONG&gt;are in front of it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;My &lt;STRONG&gt;string&lt;/STRONG&gt;: "Cdtr":{"Nm":"DEUTSCHE BANK"}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;regexp_extract(&lt;STRONG&gt;string&lt;/STRONG&gt;, '"Cdtr":."Nm":"([^"]+)', 1) as String_Ort&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 11:29:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937428#M368348</guid>
      <dc:creator>Hoibai</dc:creator>
      <dc:date>2024-07-29T11:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937431#M368350</link>
      <description>&lt;P&gt;Can you give a few more examples of strings you would like to parse?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 12:24:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937431#M368350</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-07-29T12:24:28Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937432#M368351</link>
      <description>&lt;P&gt;Like this?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data T;
  STR1 = '"Cdtr":{"Nm":"DEUTSCHE BANK"}';
  STR2 = prxchange('s/"Cdtr":."Nm":"([^"]+).*/\1/', 1, STR1);
  put STR2=;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE id="pre_sasLog_65237" class="sasLog" style="background-color: transparent; -webkit-user-select: text; -webkit-user-modify: read-only; -webkit-touch-callout: default; border-top-width: 0px; border-bottom-width: 0px;"&gt;STR2=DEUTSCHE BANK&lt;/PRE&gt;</description>
      <pubDate>Mon, 29 Jul 2024 12:29:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937432#M368351</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2024-07-29T12:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937433#M368352</link>
      <description>&lt;P&gt;Not too sure why you have&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  STR2 = prxchange('s/"Cdtr":."Nm":"([^"]+).*/\1/', 1, STR1);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I'd replace the . with a {&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  STR2 = prxchange('s/"Cdtr":{"Nm":"([^"]+).*/\1/', 1, STR1);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 12:32:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937433#M368352</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2024-07-29T12:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937435#M368353</link>
      <description>&lt;P&gt;The problem is, the first record is with {"Cdtr":{"Nm":"DEUTSCHE BANK"} .&lt;/P&gt;
&lt;P&gt;The second record&amp;nbsp; is with '{"Cdtr":{"Nm":"VERGOELST GMBH"}'&lt;/P&gt;
&lt;P&gt;according to the constant variables {"Cdtr":{"Nm":, each record in the file has a different value.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 12:55:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937435#M368353</guid>
      <dc:creator>Hoibai</dc:creator>
      <dc:date>2024-07-29T12:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937444#M368354</link>
      <description>That's why I use a variable name. Whatever is in STR1 will be read into STR2.&lt;BR /&gt;Swap with the names of your variables.</description>
      <pubDate>Mon, 29 Jul 2024 13:12:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937444#M368354</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2024-07-29T13:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937446#M368356</link>
      <description>&lt;P&gt;my string is 300 - 400 Bytes long.&lt;/P&gt;
&lt;P&gt;{"Cdtr":{"Nm":"DEUTSCHE BANK"},"CdtrAcct":{"Id":{"IBAN":"DE0111111111111111111100"}},&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 13:18:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937446#M368356</guid>
      <dc:creator>Hoibai</dc:creator>
      <dc:date>2024-07-29T13:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937447#M368357</link>
      <description>The parsing should still work. Have you tried?</description>
      <pubDate>Mon, 29 Jul 2024 13:21:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937447#M368357</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2024-07-29T13:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937451#M368360</link>
      <description>&lt;P&gt;my string begins&lt;/P&gt;
&lt;P&gt;{"ar:pacs.003.002.04":{"Cdtr":{"Nm":"DEUTSCHE BANK"},"CdtrAcct":{"Id":{"IBAN":"DE0111111111111111111100"}}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;that's why I get this result:&amp;nbsp;{"ar:pacs.003.002.04":{DEUTSCHE BANK&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 13:36:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937451#M368360</guid>
      <dc:creator>Hoibai</dc:creator>
      <dc:date>2024-07-29T13:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937455#M368361</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/463573"&gt;@Hoibai&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;The problem is, the first record is with {"Cdtr":{"Nm":"DEUTSCHE BANK"} .&lt;/P&gt;
&lt;P&gt;The second record&amp;nbsp; is with '{"Cdtr":{"Nm":"VERGOELST GMBH"}'&lt;/P&gt;
&lt;P&gt;according to the constant variables {"Cdtr":{"Nm":, each record in the file has a different value.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't understand what you mean be this.&amp;nbsp; Of course each observation has a different value.&amp;nbsp; But the PREFIX you are searching for looks exactly the same in both of those example values.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;{"Cdtr":{"Nm":"&lt;/PRE&gt;
&lt;P&gt;Personally I avoid having to use regex if I can get the result I want with simpler functions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  infile cards truncover;
  input str $200.;
cards4;
{"Cdtr":{"Nm":"DEUTSCHE BANK"}
{"Cdtr":{"Nm":"VERGOELST GMBH"}
{"ar:pacs.003.002.04":{"Cdtr":{"Nm":"DEUTSCHE BANK"},"CdtrAcct":{"Id":{"IBAN":"DE0111111111111111111100"}}
;;;;

data want;
  length cdtr_nm $60 ;
  set have;
  sp=index(str,'{"Cdtr":{"Nm":');
  if sp then cdtr_nm = dequote(substr(str,sp+length('{"Cdtr":{"Nm":')));
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tom_1-1722261078083.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/98780iE71F8FB3F17DEC6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Tom_1-1722261078083.png" alt="Tom_1-1722261078083.png" /&gt;&lt;/span&gt;&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, 29 Jul 2024 13:51:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937455#M368361</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2024-07-29T13:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937456#M368362</link>
      <description>&lt;P&gt;Can you please give a few examples (just 5-10) of the full string you are trying to parse?&amp;nbsp; It will help people help you.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2024 13:53:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937456#M368362</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2024-07-29T13:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937544#M368382</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;that's why I get this result: {"ar:pacs.003.002.04":{DEUTSCHE BANK&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data HAVE;
  input STR1 &amp;amp;:$300.;
cards;  
{"ar:pacs.003.002.04":{"Cdtr":{"Nm":"DEUTSCHE BANK"},"CdtrAcct":{"Id":{"IBAN":"DE0111111111111111111100"}}
{"Cdtr":{"Nm":"DEUTSCHE BANKX"},"CdtrAcct":{"Id":{"IBAN":"DE0111111111111111111100"}}
{"ar:pacs.003.002.04":{"Cxxx":{"Nm":"DEUTSCHE BANKY"},"CdtrAcct":{"Id":{"IBAN":"DE0111111111111111111100"}}
run;

proc sql; 
  select ifc( prxchange('s/.*"Cdtr":{"Nm":"([^"]+).*/\1/', 1, STR1) = STR1, ' ', prxchange('s/.*"Cdtr":{"Nm":"([^"]+).*/\1/', 1, STR1) ) as STRING_ORT
  from HAVE;
quit;  &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I cater for cases when there is not matching pattern with the &lt;CODE class=" language-sas"&gt;ifc()&lt;/CODE&gt; test.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE class="table" style="border-spacing: 0;" aria-label="Query Results"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="b header" scope="col"&gt;STRING_ORT&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="data"&gt;DEUTSCHE BANK&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="data"&gt;DEUTSCHE BANKX&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="data"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 00:03:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937544#M368382</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2024-07-30T00:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937552#M368387</link>
      <description>&lt;P&gt;Do they all have the form&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;SPAN&gt;"Cdtr":{"Nm":"XXX XXXX XXXXXX"}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;where "XXX XXXX XXXXXX" is the desired result, and can have variable length?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so, you can always skip the first 14 characters and drop the last 2 characters, which can be done with the SUBSTR and LENGTH functions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data sample;
  string='"Cdtr":{"Nm":"DEUTSCHE BANK"}';
  new_string=substr(string,15,length(string)-16);

  put (_all_) (= /);
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or if you want something more general, perhaps you can characterize the desired substring as the 5th word, where each double quote is treated as a word separator.&amp;nbsp; Then, as long as the desired expression is double-quoted, and it is preceded by two expressions that are also double quoted (i.e. preceded by 4 double quotes), you can do this:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data sample;
  string='"Cdtr":{"Nm":"DEUTSCHE BANK"}';
  new_string=scan(string,5,'"');
  put (_all_) (= /);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Jul 2024 03:42:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937552#M368387</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2024-07-30T03:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937572#M368393</link>
      <description>&lt;P&gt;This is the best solution. Thank you very much.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 08:52:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/937572#M368393</guid>
      <dc:creator>Hoibai</dc:creator>
      <dc:date>2024-07-30T08:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a comparable function in sas like regexp_extract?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/938212#M368556</link>
      <description>&lt;P&gt;This solution for SAS can 100% replace the regexp_extract function.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Aug 2024 08:57:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-comparable-function-in-sas-like-regexp-extract/m-p/938212#M368556</guid>
      <dc:creator>Hoibai</dc:creator>
      <dc:date>2024-08-05T08:57:57Z</dc:date>
    </item>
  </channel>
</rss>

