<?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: Substitute Characters in a String by multiple values and converting those values into individual in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490660#M128428</link>
    <description>&lt;P&gt;Like this?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data WANT;
  set HAVE;
  MAXNB=10**(length(scan(VAR,2)))-1;
  do I=0 to MAXNB;
    VAR=catt(scan(VAR,1),'.',putn(I,catt('z',length(cat(MAXNB)),'.')));
    output;
  end; 
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;TABLE style="border-collapse: collapse; width: 48pt;" border="0" width="64" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD width="64" height="20" class="xl65" style="height: 15.0pt; width: 48pt;"&gt;VAR&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.0&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.4&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.5&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.6&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.7&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.8&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.9&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;056.00&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;056.01&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;056.02&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;056.03&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;056.04&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 28 Aug 2018 22:36:25 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2018-08-28T22:36:25Z</dc:date>
    <item>
      <title>Substitute Characters in a String by multiple values and converting those values into individual row</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490632#M128411</link>
      <description>&lt;P&gt;Hello guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to convert a variable say "747.x" into 747.0,747.1,747.2---747.9 and place them in subsequent rows.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like for example, my original dataset&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Var&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;747.x&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;056.xx&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want the dataset to look like&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Converted&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;747.0'&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;747.1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;747.2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;747.3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;747.4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;747.5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;747.6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;747.7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;747.8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;747.9&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;056.00'&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;056.01'&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;056.02'&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;056.99'&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can use TRNWRD to replace .x with .0 or 0.1 etc but if there is an efficient way to convert .x into .0, 0.1...0.9 and place them into rows, that would be helpful!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tina&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;&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;&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;&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;&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;&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;&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;&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;&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;&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;&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;&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;&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;&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;&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;&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;&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;&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;&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2018 21:24:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490632#M128411</guid>
      <dc:creator>rosegarden81</dc:creator>
      <dc:date>2018-08-28T21:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Substitute Characters in a String by multiple values and converting those values into individual</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490657#M128426</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Var $;
cards;
747.x
056.xx
;

data want;
set have;
_var=input(tranwrd(var, "x", "0"),8.);
_start=1/10**(length(scan(var,-1)));
_stop=1-_start;
 want_var=_var;
output;
do _n=_start to _stop by _start;
 want_var=_var+_n;
output;
end;
keep var want_var;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Aug 2018 22:30:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490657#M128426</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-08-28T22:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: Substitute Characters in a String by multiple values and converting those values into individual</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490660#M128428</link>
      <description>&lt;P&gt;Like this?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data WANT;
  set HAVE;
  MAXNB=10**(length(scan(VAR,2)))-1;
  do I=0 to MAXNB;
    VAR=catt(scan(VAR,1),'.',putn(I,catt('z',length(cat(MAXNB)),'.')));
    output;
  end; 
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;TABLE style="border-collapse: collapse; width: 48pt;" border="0" width="64" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD width="64" height="20" class="xl65" style="height: 15.0pt; width: 48pt;"&gt;VAR&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.0&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.4&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.5&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.6&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.7&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.8&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;747.9&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;056.00&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;056.01&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;056.02&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;056.03&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="20" class="xl65" style="height: 15.0pt;"&gt;056.04&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2018 22:36:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490660#M128428</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-08-28T22:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: Substitute Characters in a String by multiple values and converting those values into individual</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490661#M128429</link>
      <description>&lt;P&gt;See if this gets you started:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data want;
   length var $ 8;
   input var $;
   numx = countc(scan(var,2,'.'),'x');
   if numx&amp;gt;0 then do i=0 to (10**numx - 1);
      select (numx);
         when (1) fmt='z1.';
         when (2) fmt='z2.';
         when (3) fmt='z3.';
         otherwise;
      end;
      var = catx('.',scan(var,1,'.'),putn(i,fmt));
      output;
   end;
   drop i numx fmt;
datalines;
747.x 
056.xx 
;
run;&lt;/PRE&gt;
&lt;P&gt;This example will not work if you have a value like&amp;nbsp; 123.1x, only if all the values after the decimal are x's. Considerations may be needed if the case of the x are inconsistent. I assumed lower case as per your example but adding a lowcase may be needed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will not replace X before the decimal if such occurs.&lt;/P&gt;
&lt;P&gt;It will handle 3 x's if they appear.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2018 22:36:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490661#M128429</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-08-28T22:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Substitute Characters in a String by multiple values and converting those values into individual</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490715#M128465</link>
      <description>&lt;P&gt;Why go through that trouble?&amp;nbsp; You can always locate the values you want using:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if ('747.' &amp;lt; varname &amp;lt; '748.');&lt;/P&gt;</description>
      <pubDate>Wed, 29 Aug 2018 04:15:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490715#M128465</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-08-29T04:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: Substitute Characters in a String by multiple values and converting those values into individual</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490917#M128605</link>
      <description>&lt;P&gt;I really appreciate all of your answers guys!&amp;nbsp; I do have some values like 720.1x too; I found out a way to work with them using some&amp;nbsp;macro coding but will try to understand the code here, and implement those for .1x type codes too. Will let you know how it goes. This is very helpful!&lt;/P&gt;</description>
      <pubDate>Wed, 29 Aug 2018 17:07:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490917#M128605</guid>
      <dc:creator>rosegarden81</dc:creator>
      <dc:date>2018-08-29T17:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: Substitute Characters in a String by multiple values and converting those values into individual</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490976#M128630</link>
      <description>&lt;P&gt;The same approach still works:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if ('720.1' &amp;lt; varname &amp;lt; '720.2');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Aug 2018 19:55:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Substitute-Characters-in-a-String-by-multiple-values-and/m-p/490976#M128630</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-08-29T19:55:05Z</dc:date>
    </item>
  </channel>
</rss>

