<?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: KUPCASE changing &amp;quot;μ&amp;quot; to &amp;quot;M&amp;quot; in SAS 9.4 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385137#M92093</link>
    <description>Thanks for the input. This would work too, but I would have to be certain of a character that I could sub in and out. I'm wondering what else KUPCASE does not handle correctly in a UTF-8 environment. If there are multiple than ART297's approach could limit this to all characters that can be upcased.</description>
    <pubDate>Wed, 02 Aug 2017 22:10:38 GMT</pubDate>
    <dc:creator>nmasel</dc:creator>
    <dc:date>2017-08-02T22:10:38Z</dc:date>
    <item>
      <title>KUPCASE changing "μ" to "M" in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385122#M92087</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My understanding reading KUPCASE documentation is this will only upcase single byte characters. &amp;nbsp;The code below running in SAS 9.4 is changing the double byte character "μ" to "M". &amp;nbsp;I need this to stay as&amp;nbsp;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;μ" but upcase all other characters. &amp;nbsp;Any ideas?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data atest;&lt;/P&gt;&lt;P&gt;x = "μ";&lt;BR /&gt;len = length(x);&lt;BR /&gt;klen = klength(x);&lt;BR /&gt;up = upcase(x);&lt;BR /&gt;kup = kupcase(x);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance for any help you can offer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;--Nick&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2017 21:01:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385122#M92087</guid>
      <dc:creator>nmasel</dc:creator>
      <dc:date>2017-08-02T21:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: KUPCASE changing "μ" to "M" in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385125#M92088</link>
      <description>&lt;P&gt;You could always use the grunt approach:&lt;/P&gt;
&lt;PRE&gt;data atest;
  length x $4;
  input x $;
  len = length(x);
  klen = klength(x);
  up = upcase(x);
  kup = kupcase(x);
  do _n_=1 to length(x);
    if rank(substr(x,_n_,1)) in (97:122) then substr(x,_n_,1)=upcase(substr(x,_n_,1));
  end;
  cards;
μ
abc
aBc
deμ
;
&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2017 21:23:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385125#M92088</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-08-02T21:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: KUPCASE changing "μ" to "M" in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385128#M92089</link>
      <description>&lt;P&gt;Thanks for the input. &amp;nbsp;This will work&amp;nbsp;but it defeats the purpose of the kupcase function. &amp;nbsp;I guess I can dump this rank code to select lowercase a-z characters into a fcmp and use this as a function.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm still interested in why &lt;SPAN&gt;kupcase&lt;/SPAN&gt; doesn't work so I'm going to leave this open for now and hope someone adds additional info.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2017 21:36:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385128#M92089</guid>
      <dc:creator>nmasel</dc:creator>
      <dc:date>2017-08-02T21:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: KUPCASE changing "μ" to "M" in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385131#M92091</link>
      <description>&lt;P&gt;I don't see any way to tell KUPCASE() what letters combinations make up lower/upper case pairs.&lt;/P&gt;
&lt;P&gt;You could try using KTRANSLATE() to turn the mu into some other unused character and then translate it back.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data atest;
  length x $4;
  input x $;
  len = length(x);
  klen = klength(x);
  up = upcase(x);
  kup = kupcase(x);
  kup2 = ktranslate(kupcase(ktranslate(x,'|','μ')),'μ','|');
cards4;
μ
abc
aBc
deμ
;;;;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Aug 2017 21:43:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385131#M92091</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-08-02T21:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: KUPCASE changing "μ" to "M" in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385137#M92093</link>
      <description>Thanks for the input. This would work too, but I would have to be certain of a character that I could sub in and out. I'm wondering what else KUPCASE does not handle correctly in a UTF-8 environment. If there are multiple than ART297's approach could limit this to all characters that can be upcased.</description>
      <pubDate>Wed, 02 Aug 2017 22:10:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385137#M92093</guid>
      <dc:creator>nmasel</dc:creator>
      <dc:date>2017-08-02T22:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: KUPCASE changing "μ" to "M" in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385141#M92095</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/118995"&gt;@nmasel&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My understanding reading KUPCASE documentation is this will only upcase single byte characters. &amp;nbsp;The code below running in SAS 9.4 is changing the double byte character "μ" to "M". &amp;nbsp;I need this to stay as&amp;nbsp;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;μ" but upcase all other characters. &amp;nbsp;Any ideas?&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I believe you are misunderstaning the definition of the function: "Converts all single-width English alphabet letters in an argument to uppercase". And since enough Greek letters are used in certain English writing ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is NOT single-byte. The Kupcase functions at the I18N Level 2 for string manipulation which means that this function can be used for SBCS, DBCS, and MBCS (UTF-8) data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2017 22:33:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385141#M92095</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-08-02T22:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: KUPCASE changing "μ" to "M" in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385142#M92096</link>
      <description>&lt;P&gt;You should probably open a ticket with SAS support to find out exactly how KUPCASE() is matching upper and lower case letters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In terms of finding an available character to use for the KTRANSLATE() trick I normally use COMPRESS() function. &amp;nbsp;So I guess for this you could use KCOMPRESS()?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So here is logic that can work with single byte character sets. &amp;nbsp;So for example to convert the letter X to something that is not in STRING you could use this.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;possible_chars=collate(0,255);
unused=char(compress(possible_chars,string),1);
new_string=translate(string,unused,'X');&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Aug 2017 22:37:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385142#M92096</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-08-02T22:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: KUPCASE changing "μ" to "M" in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385147#M92100</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/118995"&gt;@nmasel&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;You could use ktranslate() as below if you only want to target English letters.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data atest;
x = "aμX";
len = length(x);
klen = klength(x);
up = upcase(x);
kup = kupcase(x);
ktrans=ktranslate(x,'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz');
put _all_;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Aug 2017 22:59:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385147#M92100</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2017-08-02T22:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: KUPCASE changing "μ" to "M" in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385191#M92110</link>
      <description>&lt;P&gt;There is nothing wrong in the behaviour of kupcase. µ is a normal lowcase letter in the greek alphabet, M is the upcase version. See &lt;A href="https://en.wikipedia.org/wiki/Mu_(letter" target="_blank"&gt;https://en.wikipedia.org/wiki/Mu_(letter&lt;/A&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12447"&gt;@Patrick&lt;/a&gt;&amp;nbsp;shared this tip:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;You could use &lt;A href="http://go.documentation.sas.com/?cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=nlsref&amp;amp;docsetTarget=p10atr6djv8t88n16x5xgh2l30t5.htm&amp;amp;locale=en" target="_self"&gt;ktranslate()&lt;/A&gt; as below if you only want to target English letters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;&lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt; atest&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
x &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"aμX"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
len &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;length&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;x&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
klen &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; klength&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;x&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
up &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;upcase&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;x&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
kup &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; kupcase&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;x&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
ktrans&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;ktranslate&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;x&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'ABCDEFGHIJKLMNOPQRSTUVWXYZ'&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'abcdefghijklmnopqrstuvwxyz'&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;put&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;_all_&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Thu, 03 Aug 2017 15:32:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385191#M92110</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2017-08-03T15:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: KUPCASE changing "μ" to "M" in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385260#M92126</link>
      <description>&lt;P&gt;Thanks, this makes much more sense! &amp;nbsp;The data is upcased prior to me recieving this so "µg" is turning into "MG" which are very different units. &amp;nbsp;All of the methods posted by others are great options to exclude µ from the kupcase.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2017 12:20:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385260#M92126</guid>
      <dc:creator>nmasel</dc:creator>
      <dc:date>2017-08-03T12:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: KUPCASE changing "μ" to "M" in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385315#M92134</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/118995"&gt;@nmasel&lt;/a&gt;: You've marked this as solved, but the problem is different than stated in your original post and I only see an explanation, not a solution.&lt;/P&gt;
&lt;P&gt;If I correctly understand it now, you have a file that has already been upcased and now includes upper case Greek characters .. which you don't want.&lt;/P&gt;
&lt;P&gt;I'd still go with a grunt approach, but slightly different than the one I originally suggested:&lt;/P&gt;
&lt;PRE&gt;data atest;
  length x change_back $4;
  input x $;
  up = upcase(x);
  call missing(change_back);
  do _n_=1 to klength(up);
    if length(ksubstr(up,_n_,1)) ne klength(ksubstr(up,_n_,1)) then
     change_back=catt(change_back,lowcase(ksubstr(up,_n_,1)));
    else change_back=catt(change_back,ksubstr(up,_n_,1));
  end;
  cards;
μ
abc
AbC
dEμ
;
&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2017 14:16:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385315#M92134</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-08-03T14:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: KUPCASE changing "μ" to "M" in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385336#M92145</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13711"&gt;@art297&lt;/a&gt;: &amp;nbsp;I see what you are saying. &amp;nbsp;I marked as solved since the subject line is solved. &amp;nbsp;Once I realized uppercase µ should be M, I ended up with two new problems.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. How to upcase everying but µ, which your first set of code with a tweek to only look at µ along with several other solutions from others posted here can address.&lt;/P&gt;&lt;P&gt;2. How to only change upcase µ back, which this code will handle nicely with a tweek to only change back for µ.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm relatively new to these boards so I'm not sure of the ettiqutte. &amp;nbsp;Should these two questions be posted in another string with an appropriate subject line so these can be found by others when searching?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your time and effort on this topic!&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2017 14:55:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385336#M92145</guid>
      <dc:creator>nmasel</dc:creator>
      <dc:date>2017-08-03T14:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: KUPCASE changing "μ" to "M" in SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385355#M92157</link>
      <description>&lt;P&gt;My only concern was that you had a solution to your problem. Yes, when a problem scope changes or expands it's always best to start a new thread. However, in this case, all apparently turned out well and you now have all you need for getting what you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2017 15:22:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/KUPCASE-changing-quot-%CE%BC-quot-to-quot-M-quot-in-SAS-9-4/m-p/385355#M92157</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-08-03T15:22:52Z</dc:date>
    </item>
  </channel>
</rss>

