<?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 want to take out date only in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/want-to-take-out-date-only/m-p/743534#M232817</link>
    <description>data have;
input d $ date14.;
datalines;
20may2021 5:15
;
run;

data want;
input d $ date9.;
datalines;
20may2021 
;
run;</description>
    <pubDate>Tue, 25 May 2021 12:34:33 GMT</pubDate>
    <dc:creator>aanan1417</dc:creator>
    <dc:date>2021-05-25T12:34:33Z</dc:date>
    <item>
      <title>want to take out date only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/want-to-take-out-date-only/m-p/743534#M232817</link>
      <description>data have;
input d $ date14.;
datalines;
20may2021 5:15
;
run;

data want;
input d $ date9.;
datalines;
20may2021 
;
run;</description>
      <pubDate>Tue, 25 May 2021 12:34:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/want-to-take-out-date-only/m-p/743534#M232817</guid>
      <dc:creator>aanan1417</dc:creator>
      <dc:date>2021-05-25T12:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: want to take out date only</title>
      <link>https://communities.sas.com/t5/SAS-Programming/want-to-take-out-date-only/m-p/743535#M232818</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
 input d $14.; 
datalines; 
 20may2021 5:15 
 ;
run; 

data want;
 set have;
 date=input(strip(d),date9.);
 format date date9.;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 25 May 2021 12:40:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/want-to-take-out-date-only/m-p/743535#M232818</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2021-05-25T12:40:59Z</dc:date>
    </item>
  </channel>
</rss>

