<?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 How convert date to current year in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174765#M44870</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;I have&amp;nbsp; a&amp;nbsp; date column that looks like this&lt;/P&gt;&lt;P&gt;1106&lt;/P&gt;&lt;P&gt;1209&lt;/P&gt;&lt;P&gt;0101&lt;/P&gt;&lt;P&gt;0102&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need the data&amp;nbsp; to look like this&lt;/P&gt;&lt;P&gt;11/06/14&lt;/P&gt;&lt;P&gt;12/09/14&lt;/P&gt;&lt;P&gt;01/01/15&lt;/P&gt;&lt;P&gt;01/02/15&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i used this code in 2014 an was hoping for any insight how to make it work with 2014 and 2015 and any future years&lt;/P&gt;&lt;P&gt;data table1;&lt;/P&gt;&lt;P&gt;set table;&lt;/P&gt;&lt;P&gt;newdate =mdy (substr(old date ,1,2),substr(old date,3,4),2014);&lt;/P&gt;&lt;P&gt;format&amp;nbsp; newdate mmddyy9.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Jan 2015 15:48:15 GMT</pubDate>
    <dc:creator>BETO</dc:creator>
    <dc:date>2015-01-08T15:48:15Z</dc:date>
    <item>
      <title>How convert date to current year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174765#M44870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;I have&amp;nbsp; a&amp;nbsp; date column that looks like this&lt;/P&gt;&lt;P&gt;1106&lt;/P&gt;&lt;P&gt;1209&lt;/P&gt;&lt;P&gt;0101&lt;/P&gt;&lt;P&gt;0102&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need the data&amp;nbsp; to look like this&lt;/P&gt;&lt;P&gt;11/06/14&lt;/P&gt;&lt;P&gt;12/09/14&lt;/P&gt;&lt;P&gt;01/01/15&lt;/P&gt;&lt;P&gt;01/02/15&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i used this code in 2014 an was hoping for any insight how to make it work with 2014 and 2015 and any future years&lt;/P&gt;&lt;P&gt;data table1;&lt;/P&gt;&lt;P&gt;set table;&lt;/P&gt;&lt;P&gt;newdate =mdy (substr(old date ,1,2),substr(old date,3,4),2014);&lt;/P&gt;&lt;P&gt;format&amp;nbsp; newdate mmddyy9.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 15:48:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174765#M44870</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2015-01-08T15:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: How convert date to current year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174766#M44871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to correct the name of the variable &lt;STRONG&gt;old date&lt;/STRONG&gt; which is invalid. It shoudt be something like old_date, olddate or "old date"n. Check the input dataset &lt;STRONG&gt;table.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CTorres&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 16:01:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174766#M44871</guid>
      <dc:creator>CTorres</dc:creator>
      <dc:date>2015-01-08T16:01:04Z</dc:date>
    </item>
    <item>
      <title>Re: How convert date to current year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174767#M44872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input olddate $;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;1106&lt;/P&gt;&lt;P&gt;1209&lt;/P&gt;&lt;P&gt;0101&lt;/P&gt;&lt;P&gt;0102&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;data want (drop=year);&lt;/P&gt;&lt;P&gt;set have;&lt;/P&gt;&lt;P&gt;if substr(olddate,1,2)&amp;gt;'10' then year=2014;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; else year=2015;&lt;/P&gt;&lt;P&gt;newdate =mdy (substr(olddate ,1,2),substr(olddate,3,4),year);&lt;/P&gt;&lt;P&gt;format&amp;nbsp; newdate mmddyy9.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CTorres&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 16:10:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174767#M44872</guid>
      <dc:creator>CTorres</dc:creator>
      <dc:date>2015-01-08T16:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: How convert date to current year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174768#M44873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To expand on what you supplied, if they want to update these values for the current year, they can use the year function to extract the current year:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input olddate $;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;1106&lt;/P&gt;&lt;P&gt;1209&lt;/P&gt;&lt;P&gt;0101&lt;/P&gt;&lt;P&gt;0102&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;set have;&lt;/P&gt;&lt;P&gt;newdate =mdy(input(substr(olddate,1,2),2.),input(substr(olddate,3,4),2.),year(today()));&lt;/P&gt;&lt;P&gt;format&amp;nbsp; newdate mmddyy9.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 16:32:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174768#M44873</guid>
      <dc:creator>kaade</dc:creator>
      <dc:date>2015-01-08T16:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: How convert date to current year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174769#M44874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do you know what year goes with what record?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 16:46:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174769#M44874</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-01-08T16:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: How convert date to current year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174770#M44875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If this is actual work product I would mention that a lack of a year value in the data is just asking for all kinds of trouble at some point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose at some time in the future you (or someone else) have to go back and recreate data from an archive due to some loss. The question about year gets much more complicated then.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 18:34:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174770#M44875</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-01-08T18:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: How convert date to current year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174771#M44876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming that the records are in ascending order according to their date (and that you don't have records with month=12 and year=2014 followed by month=12 and year=2015 or so) :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data Have;&lt;BR /&gt;&amp;nbsp; Input Date $;&lt;BR /&gt;&amp;nbsp; Datalines;&lt;BR /&gt;1106&lt;BR /&gt;1209&lt;BR /&gt;0101&lt;BR /&gt;0102&lt;BR /&gt;;&lt;BR /&gt;Run;&lt;/P&gt;&lt;P&gt;Data Want (Keep=Date_new);&lt;BR /&gt;&amp;nbsp; Set Have;&lt;BR /&gt;&amp;nbsp; Retain Year 2014 Prev_Month;&lt;BR /&gt;&amp;nbsp; If _N_ eq 1 Then Prev_Month=Input(Substr(Date,3,2),2.);&lt;BR /&gt;&amp;nbsp; Else If Input(Substr(Date,3,2),2.) &amp;lt; Prev_Month Then Year+1;&lt;BR /&gt;&amp;nbsp; Prev_Month=Input(Substr(Date,3,2),2.);&lt;BR /&gt;&amp;nbsp; Date_new=MDY(Put(Substr(Date,3,2),2.),Put(Substr(Date,1,2),2.),Year);&lt;BR /&gt;&amp;nbsp; Format Date_new DDMMYY8.;&lt;BR /&gt;Run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 18:54:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174771#M44876</guid>
      <dc:creator>user24feb</dc:creator>
      <dc:date>2015-01-08T18:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: How convert date to current year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174772#M44877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes with out year it's diffcult&amp;nbsp; to get it thanks for the assistance &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2015 20:47:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174772#M44877</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2015-01-08T20:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: How convert date to current year</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174773#M44878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is not clear whether you are asking how to convert current data in this format or historical data.&lt;/P&gt;&lt;P&gt;For example the Unix ls -l command will put out dates with month and day and then either the year when the files are more than a year old or the time for recent files.&amp;nbsp; So you have to calculate the year based on what time you generated the list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also it is not clear from your examples if your values represent MMDD or DDMM.&lt;/P&gt;&lt;P&gt;Either way you do not want to compound the problem by generating a string that only has two digits for the year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So assuming that you already have a numeric variable DATE with values in the form MMDD here is one way to convert the values to an actual date value.&amp;nbsp; Or to convert it to a string that has slashes in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; have ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;input&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; date @@;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;cards&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: #FFFFC0;"&gt;1116 1209 0101 0102&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; want ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; have ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp; year=year(today());&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp; month = int(date/&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;100&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp; day = mod(date,&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;100&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; mdy(month,day,year) &amp;gt; today() &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;then&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; year=year-&lt;/SPAN&gt;&lt;SPAN style="color: teal; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp; date2 = mdy(month,day,year);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;&amp;nbsp; date2char = put(date2,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;mmddyys10.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; date2 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: teal; background: white;"&gt;date9.&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&amp;nbsp; &lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;put&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue; background: white;"&gt;_all_&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;) (=);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: navy; background: white; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black; background: white;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 12pt;"&gt;date=1116 year=2014 month=11 day=16 date2=16NOV2014 date2char=11/16/2014&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 12pt;"&gt;date=1209 year=2014 month=12 day=9 date2=09DEC2014 date2char=12/09/2014&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 12pt;"&gt;date=101 year=2015 month=1 day=1 date2=01JAN2015 date2char=01/01/2015&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 12pt;"&gt;date=102 year=2015 month=1 day=2 date2=02JAN2015 date2char=01/02/2015&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 04:46:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-convert-date-to-current-year/m-p/174773#M44878</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-01-09T04:46:32Z</dc:date>
    </item>
  </channel>
</rss>

