<?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: Can I use TRANWRD to replace multiple variable values with space in one line?: Revisited in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/416072#M102146</link>
    <description>&lt;P&gt;Yes, it was my typo!&amp;nbsp; I got the same results too.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And my real data is like NEXJ SELK YVRC SFOA (not real codes, but something like these)..&lt;/P&gt;</description>
    <pubDate>Fri, 24 Nov 2017 19:08:03 GMT</pubDate>
    <dc:creator>Yoko</dc:creator>
    <dc:date>2017-11-24T19:08:03Z</dc:date>
    <item>
      <title>Can I use TRANWRD to replace multiple variable values with space in one line?: Revisited</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415546#M101923</link>
      <description>&lt;P&gt;I recently posted a question and found a solution (&lt;SPAN&gt;Can I use TRANWRD to replace multiple variable values with space in one line?).&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I would like to ask further questions regarding that post.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In reality, I do have a data set x (please see below) and more countries to remove than to keep.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The program below requires making a list of countries to be deleted. It will be troublesome if there are a lot of countries.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Since countries to be kept are only a few.&amp;nbsp; Is it possible to make a list of countries to be kept and use it to get the same result? &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;&lt;P&gt;#####&amp;nbsp;&lt;/P&gt;&lt;P&gt;data countries(keep=country rename=(country=del));&lt;BR /&gt;input country $ 1-20;&lt;BR /&gt;datalines;&lt;BR /&gt;USA&lt;BR /&gt;Canada&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data x(drop=del);&lt;BR /&gt;input country $1-40;&lt;BR /&gt;do i = 1 to n;&lt;BR /&gt;set countries point=i nobs=n;&lt;BR /&gt;country = tranwrd(country, trim(del), ' ');&lt;BR /&gt;end;&lt;BR /&gt;datalines;&lt;BR /&gt;China USA Japan&lt;BR /&gt;Korea China&lt;BR /&gt;Canada&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc print; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Obs country&lt;BR /&gt;1 China Japan&lt;BR /&gt;2 Korea China&lt;BR /&gt;3&lt;SPAN&gt;&amp;nbsp;&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;Thank you,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yoko&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>Wed, 22 Nov 2017 15:45:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415546#M101923</guid>
      <dc:creator>Yoko</dc:creator>
      <dc:date>2017-11-22T15:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Can I use TRANWRD to replace multiple variable values with space in one line?: Revisited</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415560#M101927</link>
      <description>&lt;P&gt;You could always just reverse your current logic. e.g.:&lt;/P&gt;
&lt;PRE&gt;data keeps(keep=country rename=(country=del));
  input country $ 1-20;
  datalines;
Korea
China
;

data x(drop=del);
  array keepers(99) $ _temporary_;
  retain keepers;
  if _n_ eq 1 then do i = 1 to n;
    set keeps point=i nobs=n;
    keepers(i)=del;
  end;

  input country $1-40;

  i=1;
  do while(scan(country,i,' ') ne '');
    if scan(country,i,' ') not in keepers then
      country = tranwrd(country, trim(scan(country,i,' ')), ' ');
    i+1;
  end;
  datalines;
China USA Japan
Korea China
Canada
;
&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2017 16:23:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415560#M101927</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-11-22T16:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Can I use TRANWRD to replace multiple variable values with space in one line?: Revisited</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415584#M101930</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the program. I run it and I got the same result as the one using the 'dropping' method.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, I realized that the data set called 'keeps' has only Korea and China.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, Japan was still kept as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The program is a bit more complicated for me to tell why Japan was still kept.&amp;nbsp; (This is what I want, though)&lt;/P&gt;&lt;P&gt;Would you mind explaining this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yoko&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2017 17:45:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415584#M101930</guid>
      <dc:creator>Yoko</dc:creator>
      <dc:date>2017-11-22T17:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: Can I use TRANWRD to replace multiple variable values with space in one line?: Revisited</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415592#M101931</link>
      <description>&lt;P&gt;It didn't work correctly because my logic was slightly flawed. It was trying to simultaneously search across a string but, at the same time, change the strings contents.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think that the following actually does work and will be easier to follow:&lt;/P&gt;
&lt;PRE&gt;data keeps(keep=country rename=(country=del));
  input country $ 1-20;
  datalines;
Korea
China
;

data x(drop=del);
  array keepers(3) $ /*_temporary_*/;
  retain keepers;
  if _n_ eq 1 then do i = 1 to n;
    set keeps point=i nobs=n;
    keepers(i)=del;
  end;

  input country $1-40;
  original=country;

  i=1;
  do while(scan(original,i,' ') ne '');
    if scan(original,i,' ') not in keepers then
      country = tranwrd(country, scan(original,i,' '), '');
    i+1;
  end;
  datalines;
China USA Japan
Korea China USA
Canada USA Japan
;&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2017 18:31:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415592#M101931</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-11-22T18:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Can I use TRANWRD to replace multiple variable values with space in one line?: Revisited</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415836#M102052</link>
      <description>&lt;P&gt;Thank you for your suggestion.&amp;nbsp; It worked!&amp;nbsp; I also tried slightly differently to be similar to what I actually have to do.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This worked too (please see below).&amp;nbsp; But, when I tried with my real data, the variable equivalent to 'country' was empty.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you&amp;nbsp;have any ideas regarding what I should be careful or should pay attention when applying this to a real data set?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;####&lt;/P&gt;&lt;P&gt;DATA myData;&lt;/P&gt;&lt;P&gt;input ID country $40.;&lt;BR /&gt;DATALINES;&lt;BR /&gt;1 China USA Japan&lt;BR /&gt;2 Korea China&lt;BR /&gt;3 Canada&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data keeps(keep=country rename=(country=del));&lt;BR /&gt;input country $ 1-20;&lt;BR /&gt;datalines;&lt;BR /&gt;Korea&lt;BR /&gt;China&lt;BR /&gt;Japan&lt;BR /&gt;;&lt;BR /&gt;run ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data newData(drop=del);&lt;BR /&gt;set myData;&lt;BR /&gt;array keepers(3) $;&lt;BR /&gt;retain keepers;&lt;BR /&gt;if _n_ eq 1 then do i = 1 to n;&lt;BR /&gt;set keeps point=i nobs=n;&lt;BR /&gt;keepers(i)=del;&lt;BR /&gt;end;&lt;/P&gt;&lt;P&gt;original=country;&lt;/P&gt;&lt;P&gt;i=1;&lt;BR /&gt;do while(scan(original,i,' ') ne '');&lt;BR /&gt;if scan(original,i,' ') not in keepers then&lt;BR /&gt;country = tranwrd(country, scan(original,i,' '), '');&lt;BR /&gt;i+1;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;proc print; run;&lt;/P&gt;&lt;P&gt;###&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yoko&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2017 14:19:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415836#M102052</guid>
      <dc:creator>Yoko</dc:creator>
      <dc:date>2017-11-23T14:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: Can I use TRANWRD to replace multiple variable values with space in one line?: Revisited</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415840#M102055</link>
      <description>&lt;P&gt;You'll have to provide some examples of where it doesn't work. Some reasons why it wouldn't work include: capitalization differences (which you can correct with the upcase function), leading or trailing spaces (which you can correct with trim, left and/or strip functions), country names that include more than two words (which you can correct by&amp;nbsp;separating countries with a delimiter other than space), and variable naming differences.&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, 23 Nov 2017 14:32:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415840#M102055</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-11-23T14:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Can I use TRANWRD to replace multiple variable values with space in one line?: Revisited</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415877#M102079</link>
      <description>&lt;P&gt;My real variable has 4 alphabets (e.g., AAAA) instead of country names.&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I submit the program, there is o error message. Simply, the variable 'country' is emply like this:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Obs ID country keepers1 keepers2 keepers3 original&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; JJJJ&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CCCC&amp;nbsp; &amp;nbsp; &amp;nbsp;UUUU JJJJ&lt;BR /&gt;2 2 KKKK CCCC KKKK CCCC JJJJ KKKK CCCC&lt;BR /&gt;3 3 KKKK CCCC JJJJ DDDD&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2017 18:07:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415877#M102079</guid>
      <dc:creator>Yoko</dc:creator>
      <dc:date>2017-11-23T18:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: Can I use TRANWRD to replace multiple variable values with space in one line?: Revisited</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415880#M102082</link>
      <description>&lt;P&gt;My real variable names are 4-character codes like AAAA instead of country names.&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I submit the program, I do not get any errors.&amp;nbsp; Simply the country in the results is empty like this (please see below)&amp;nbsp;&lt;/P&gt;&lt;P&gt;while country for ID1 should be&amp;nbsp;CCCC JJJJ, country for ID2 should be KKKK JJJJ, and country for ID3&amp;nbsp; should be 'space'.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The codes are all capital letters and separated by one space if there are multiple codes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;In reality there are only 3 codes I want to keep just like my country name example, and there are about 50 codes that I want to replace with space. Lastly, my data is huge.&amp;nbsp; Not sure if these matter..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Obs ID country keepers1 keepers2 keepers3 original&lt;BR /&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; KKKK&amp;nbsp; &amp;nbsp; &amp;nbsp; CCCC&amp;nbsp; &amp;nbsp; &amp;nbsp; JJJJ&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CCCC UUUU JJJJ&lt;BR /&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; KKKK&amp;nbsp; &amp;nbsp; &amp;nbsp; CCCC&amp;nbsp; &amp;nbsp; &amp;nbsp; JJJJ&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; KKKK CCCC&lt;BR /&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; KKKK&amp;nbsp; &amp;nbsp; &amp;nbsp; CCCC&amp;nbsp; &amp;nbsp; &amp;nbsp; JJJJ&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DDDD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yoko&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2017 18:30:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415880#M102082</guid>
      <dc:creator>Yoko</dc:creator>
      <dc:date>2017-11-23T18:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: Can I use TRANWRD to replace multiple variable values with space in one line?: Revisited</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415882#M102083</link>
      <description>&lt;P&gt;Post your keepers data set in the form of a data step, as well as post 10 actual records in the form of a data step.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2017 18:39:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415882#M102083</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-11-23T18:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: Can I use TRANWRD to replace multiple variable values with space in one line?: Revisited</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415889#M102084</link>
      <description>&lt;P&gt;I would hope you just made a typo, as shouldn't ID2 result in: KKKK CCCC&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following appears to be working perfectly for me (p.s. same code as I posted before):&lt;/P&gt;
&lt;PRE&gt;data keeps(keep=country rename=(country=del));
  input country $ 1-20;
  datalines;
KKKK
CCCC
JJJJ
;

data x(drop=del);
  array keepers(3) $ /*_temporary_*/;
  retain keepers;
  if _n_ eq 1 then do i = 1 to n;
    set keeps point=i nobs=n;
    keepers(i)=del;
  end;

  input country $1-40;
  original=country;

  i=1;
  do while(scan(original,i,' ') ne '');
    if scan(original,i,' ') not in keepers then
      country = tranwrd(country, scan(original,i,' '), '');
    i+1;
  end;
  datalines;
CCCC UUUU JJJJ
KKKK CCCC
DDDD
;
&lt;/PRE&gt;
&lt;P&gt;Result:&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 598px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16818iBC157B7EDADFB971/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2017 19:31:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/415889#M102084</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-11-23T19:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Can I use TRANWRD to replace multiple variable values with space in one line?: Revisited</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/416072#M102146</link>
      <description>&lt;P&gt;Yes, it was my typo!&amp;nbsp; I got the same results too.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And my real data is like NEXJ SELK YVRC SFOA (not real codes, but something like these)..&lt;/P&gt;</description>
      <pubDate>Fri, 24 Nov 2017 19:08:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Can-I-use-TRANWRD-to-replace-multiple-variable-values-with-space/m-p/416072#M102146</guid>
      <dc:creator>Yoko</dc:creator>
      <dc:date>2017-11-24T19:08:03Z</dc:date>
    </item>
  </channel>
</rss>

