<?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: How to write a macro for renaming lots of variables? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128184#M26185</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;example(using capital letters in &lt;SPAN style="color: #ff0000;"&gt;RED&lt;/SPAN&gt; &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;data fake;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; array _fake fake1-fake200;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; do over _fake; _fake=1;end;&lt;/P&gt;&lt;P&gt;data real;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; array _real real1-real200;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; do over _real;_real=2;end;&lt;/P&gt;&lt;P&gt; run;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;&amp;nbsp; select name into :fake separated by ' '&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from sashelp.vcolumn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; where libname=&lt;SPAN style="color: #ff0000;"&gt;'WORK&lt;/SPAN&gt;' and memname='&lt;SPAN style="color: #ff0000;"&gt;FAKE&lt;/SPAN&gt;';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; select name into :real separated by ' '&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from sashelp.vcolumn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; where libname='&lt;SPAN style="color: #ff0000;"&gt;WORK&lt;/SPAN&gt;' and memname='&lt;SPAN style="color: #ff0000;"&gt;REAL&lt;/SPAN&gt;';&lt;/P&gt;&lt;P&gt; quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; %macro test;&lt;/P&gt;&lt;P&gt; data real;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; set real;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; rename&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %do i=1 %to 200;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %scan(&amp;amp;real,&amp;amp;i)=%scan(&amp;amp;fake,&amp;amp;i)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %end;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;%mend; &lt;/P&gt;&lt;P&gt;%test&lt;/P&gt;&lt;P&gt;proc contents data=real;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 22 Sep 2012 13:11:47 GMT</pubDate>
    <dc:creator>Linlin</dc:creator>
    <dc:date>2012-09-22T13:11:47Z</dc:date>
    <item>
      <title>How to write a macro for renaming lots of variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128183#M26184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a data set that has 200 columns, named VAR1, VAR2, ..., VAR200, say. I need to rename all these in a data step, something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let realname=A B C D E; /*200 different names*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***Create a list of 200 fake vars VAR1, VAR2, ...., VAR200;&lt;/P&gt;&lt;P&gt;%macro create_200_vars;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %global fakevars;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %do i=1 %to 200 %by 1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %let fakevars=&amp;amp;fakevars. VAR&amp;amp;i.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %put &amp;amp;fakevars;&lt;/P&gt;&lt;P&gt;%mend create_200_vars;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data renamed;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set unnamed; /*Dataset with unnamed vars VAR1, VAR2, ..., VAR200*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do i=1 to 200 by 1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rename VAR&amp;amp;i.=scan(&amp;amp;fakevars., &amp;amp;i.); ***WRONG HERE, but don't know how to fix it in this datastep;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please help? Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Sep 2012 08:59:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128183#M26184</guid>
      <dc:creator>smilingmelbourne</dc:creator>
      <dc:date>2012-09-22T08:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a macro for renaming lots of variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128184#M26185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;example(using capital letters in &lt;SPAN style="color: #ff0000;"&gt;RED&lt;/SPAN&gt; &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;data fake;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; array _fake fake1-fake200;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; do over _fake; _fake=1;end;&lt;/P&gt;&lt;P&gt;data real;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; array _real real1-real200;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; do over _real;_real=2;end;&lt;/P&gt;&lt;P&gt; run;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;&amp;nbsp; select name into :fake separated by ' '&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from sashelp.vcolumn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; where libname=&lt;SPAN style="color: #ff0000;"&gt;'WORK&lt;/SPAN&gt;' and memname='&lt;SPAN style="color: #ff0000;"&gt;FAKE&lt;/SPAN&gt;';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; select name into :real separated by ' '&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from sashelp.vcolumn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; where libname='&lt;SPAN style="color: #ff0000;"&gt;WORK&lt;/SPAN&gt;' and memname='&lt;SPAN style="color: #ff0000;"&gt;REAL&lt;/SPAN&gt;';&lt;/P&gt;&lt;P&gt; quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; %macro test;&lt;/P&gt;&lt;P&gt; data real;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; set real;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; rename&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %do i=1 %to 200;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %scan(&amp;amp;real,&amp;amp;i)=%scan(&amp;amp;fake,&amp;amp;i)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %end;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;%mend; &lt;/P&gt;&lt;P&gt;%test&lt;/P&gt;&lt;P&gt;proc contents data=real;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Sep 2012 13:11:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128184#M26185</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2012-09-22T13:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a macro for renaming lots of variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128185#M26186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;An alternative approach:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input a b c d e;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;1 1 1 1 1&lt;/P&gt;&lt;P&gt;2 2 2 2 2&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql noprint;&lt;/P&gt;&lt;P&gt;&amp;nbsp; select catt(name,"=var",varnum)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; into :renames separtated by " "&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from dictionary.columns&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where libname="WORK" and&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; memname="HAVE"&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set have (rename=(&amp;amp;renames.));&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Sep 2012 13:25:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128185#M26186</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-09-22T13:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a macro for renaming lots of variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128186#M26187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To rename variables you really want to generate code. So you could use a MACRO.&amp;nbsp; The code you basically want to generate are the OLD=NEW name pairs.&lt;/P&gt;&lt;P&gt;If your old names will always be VAR1-VARnnn then the macro only needs to receive the list of new names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%macro rename(newnames);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%local i ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%do i=1 %to %sysfunc(countw(&amp;amp;newnames));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; var&amp;amp;i = %scan(&amp;amp;newnames,&amp;amp;i)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%mend rename;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can use the generated pairs in either RENAME statement or a RENAME dataset option.&amp;nbsp; The RENAME statement could be part of a DATA step or use PROC DATASETS to modify the names in an existing dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;data renamed;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; set unnamed;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; rename %rename(&lt;SPAN style="background-color: #ffffff;"&gt;A B C D E&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If the old names vary then you might want a macro that takes two lists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%macro rename(oldnames,newnames);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%local i ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%do i=1 %to %sysfunc(countw(&amp;amp;oldnames));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; %scan(&amp;amp;oldnames,&amp;amp;i) = %scan(&amp;amp;newnames,&amp;amp;i)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%mend rename;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Sep 2012 15:37:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128186#M26187</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-09-22T15:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a macro for renaming lots of variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128187#M26188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arthur, Maybe you put it in a wrong direction.&lt;/P&gt;&lt;P&gt;OP want var1 -&amp;gt; a , not a -&amp;gt; var1 .&lt;/P&gt;&lt;P&gt;I often do it everyday. Call execute is good .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;data have;
&amp;nbsp; input var1-var5;
&amp;nbsp; cards;
1 1 1 1 1
2 2 2 2 2
;
run;

data x;
input name : $40.;
cards;
a
b
c
d
e
;
run;
data _null_;
set x end=last;
if _n_ eq 1 then call execute('proc datasets library=work nolist; modify have; rename ');
call execute(cats('var',_n_,'=',name));
if last then call execute(';quit;');
run;


&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2012 08:51:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128187#M26188</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-09-24T08:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a macro for renaming lots of variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128188#M26189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I cannot use an array because I don't know which column is sure to be character- /numeric-type. They all are supposed to have corresponding columns of identical types, but because many first observations of a column in a data set may be missing, it is set to character-type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should I make a macro for converting a column of all data set to its correct type?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 05:26:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128188#M26189</guid>
      <dc:creator>smilingmelbourne</dc:creator>
      <dc:date>2012-09-27T05:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to write a macro for renaming lots of variables?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128189#M26190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link...it will provide you some idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="active_link" href="https://communities.sas.com/message/123403#123403" title="https://communities.sas.com/message/123403#123403"&gt;https://communities.sas.com/message/123403#123403&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 05:45:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-a-macro-for-renaming-lots-of-variables/m-p/128189#M26190</guid>
      <dc:creator>shivas</dc:creator>
      <dc:date>2012-09-27T05:45:01Z</dc:date>
    </item>
  </channel>
</rss>

