<?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: Mask special,non utf-8 characters. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184954#M35112</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rw9,&lt;/P&gt;&lt;P&gt;I'm working on SAS 9.1.3, so need to solve issue there for now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jun 2014 13:09:15 GMT</pubDate>
    <dc:creator>Yura2301</dc:creator>
    <dc:date>2014-06-04T13:09:15Z</dc:date>
    <item>
      <title>Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184949#M35107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I would like to mask special, non utf-8 characters in all sas table, if it not possible - at least mask such spec. chars in concrette col.&lt;/P&gt;&lt;P&gt;Small example of such table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt; test;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; txt=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: purple; font-size: 10pt;"&gt;"Test1üt ÅåTest2 øTest3 æÆtest4"&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: navy; font-size: 10pt; background: white; font-family: 'Courier New';"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background: white; color: black; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A tried a lot of SAS functions and non of them solved the issue, the best what I got -replaced string when all such spec chars become missing(space), that is not acceptable due I would like to change them by some similar values,&lt;/P&gt;&lt;P&gt;for example ü-&amp;gt;u,å-&amp;gt;a.&lt;/P&gt;&lt;P&gt;I can't predict all such spec chars that can come, so can't just replace by prxchange or tranwrd function one char to another, so need somne general solution.&lt;/P&gt;&lt;P&gt;I use SAS 9.1.3 under Windows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 12:30:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184949#M35107</guid>
      <dc:creator>Yura2301</dc:creator>
      <dc:date>2014-06-04T12:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184950#M35108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you would have to hardcode it like this or using custom format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; txt="Test1üt ÅåTest2 øTest3 æÆtest4";&lt;/P&gt;&lt;P&gt;new_txt=translate(txt,'AauoeE','ÅåüøæÆ');&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Haikuo &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 12:57:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184950#M35108</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-06-04T12:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184951#M35109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, just run that step under SAS 9.3 Win, and it seemed to store it fine. Personally I would strip these out, something like:&amp;nbsp; compress(x, , 'kn');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However you say you want to replace them with other characters.&amp;nbsp; Not sure how viable that is, what will you change the ø to for instance, some of these special characters would have different resolutions so you may have to do a set of translations.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 13:02:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184951#M35109</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-06-04T13:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184952#M35110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With SAS9,4 there is a &lt;A href="https://support.sas.com/documentation/cdl/en/nlsref/67110/HTML/default/viewer.htm#p078j5y1bbc9xfn1scp11kw3nmnt.htm"&gt;BASECHAR &lt;/A&gt;function. Although it does not help much it is good to know that with SAS9.4 this gets a lot easier&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 13:06:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184952#M35110</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2014-06-04T13:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184953#M35111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hai,&lt;/P&gt;&lt;P&gt;Yep, but it still hardcoding, and if some another spec char. occurs tommorow&amp;nbsp; - I'll need to add changes to code again.&lt;/P&gt;&lt;P&gt;Whould like to find some general solution, not sure if it exists at all.&lt;/P&gt;&lt;P&gt;Maybe some session encoding options will help, or maybe some libname encoding option , I tried a lot of cases and nothing helped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 13:07:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184953#M35111</guid>
      <dc:creator>Yura2301</dc:creator>
      <dc:date>2014-06-04T13:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184954#M35112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rw9,&lt;/P&gt;&lt;P&gt;I'm working on SAS 9.1.3, so need to solve issue there for now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 13:09:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184954#M35112</guid>
      <dc:creator>Yura2301</dc:creator>
      <dc:date>2014-06-04T13:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184955#M35113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bruno,&lt;/P&gt;&lt;P&gt;I'm too far from SAS 9.4, actually on SAS 9.1.3,hopefully for a few month will be on SAS 9.3, but for now it SAS 9.1.3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 13:10:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184955#M35113</guid>
      <dc:creator>Yura2301</dc:creator>
      <dc:date>2014-06-04T13:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184956#M35114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you need to lay out your converting rules first. With your rules being consistent, you can start looking at Byte function and Rank function, with the help of Substr function or PRX functions, a non hardcoding solution may be available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Haikuo &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 13:13:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184956#M35114</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-06-04T13:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184957#M35115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,&amp;nbsp; compress(x, , 'kn'); this should still work for stripping out the characters, but I don't think there is an easy way of translating the characters.&amp;nbsp; You could create a replace dataset, something like:&lt;/P&gt;&lt;P&gt;TEXT_FROM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TEXT_TO&lt;/P&gt;&lt;P&gt;Å&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; A&lt;/P&gt;&lt;P&gt;ø&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then have a code generator:&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set replace end=last;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if _n_=1 then call execute('data want; set have; var1=tranwrd("'||strip(text_from)||'","'||strip(text_to)||'";');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else call execute('tranwrd("'||strip(text_from)||'","'||strip(text_to)||'");');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if last then call execute('run;');&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You would only need to add any new records to that replace table (which could be in Excel...) rather than updating your code each time.&amp;nbsp; Note the code above will create a datastep with each tranwrd statement from the dataset replace.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 13:19:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184957#M35115</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2014-06-04T13:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184958#M35116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;Yes, I also thought about such variant but from performance side it can be not the best, I would need to check each char in each column for set of rules ,for big table with long strings such operations can take a lot of time.&lt;/P&gt;&lt;P&gt;But as variant it can be, thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 13:19:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184958#M35116</guid>
      <dc:creator>Yura2301</dc:creator>
      <dc:date>2014-06-04T13:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184959#M35117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the NLS guide SAS 9.1 found at: &lt;A href="http://support.sas.com/documentation/onlinedoc/91pdf/index_91.html" title="http://support.sas.com/documentation/onlinedoc/91pdf/index_91.html"&gt;SAS 9.1 Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I do not get your problem well as it is looking you are expecting some wlatin1 chars that could get propagated to a ascii-7 DBMS or 437-DB2 ebcdic environment.&lt;BR /&gt;Knowing your request in this SBCS (Single byte Character Set) would help as those can not be more as 256 values. A trantab and/or encoding setting should help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you are getting data form utf8 source (XML html Word Excel etc) that must be stored in a latin1 environment as an impossible mission. &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 13:47:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184959#M35117</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-06-04T13:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184960#M35118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi again,&lt;/P&gt;&lt;P&gt;Clear.&lt;/P&gt;&lt;P&gt;Pitty that compress(x, , 'kn') also replace all spaces, if it whould replace only non utf8 chars it would be better:), but offcource I can initially replace chars to some another char then replace it back in the end, but it to much probably.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 13:54:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184960#M35118</guid>
      <dc:creator>Yura2301</dc:creator>
      <dc:date>2014-06-04T13:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184961#M35119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;compress(txt,,'kns') will keep blanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 14:04:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184961#M35119</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2014-06-04T14:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184962#M35120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jaap,&lt;/P&gt;&lt;P&gt;Thanks, will take a look.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 14:12:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184962#M35120</guid>
      <dc:creator>Yura2301</dc:creator>
      <dc:date>2014-06-04T14:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184963#M35121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;Thanks, will use it together with a few hardcoding for chars that I whould like to replace by similar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 14:13:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184963#M35121</guid>
      <dc:creator>Yura2301</dc:creator>
      <dc:date>2014-06-04T14:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Mask special,non utf-8 characters.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184964#M35122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Jaap said. Check the functions start with K* , like Kcompress() Kscan()&amp;nbsp; in NLS documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 16:09:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Mask-special-non-utf-8-characters/m-p/184964#M35122</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-06-04T16:09:59Z</dc:date>
    </item>
  </channel>
</rss>

