Hi Everyone,
Can some one help me with extracting DAY, MONTH, YEAR and Time from the below format....
2015-08-27T 8:36:00
2014-09-30T14:45:00
The output should look like this…
STDTC ST_Y ST_M ST_D ST_TM
2015-08-27T 8:36:00 2015 8 27 08:36
2014-09-30T14:45:00 2014 9 30 14:45
Thanks in advance
Rakesh
1. Datepart() function to extract date
2. Timepart() function to extract time
3. Year(), Month(), Day() function to extract date components - reference variable from #1
1. Datepart() function to extract date
2. Timepart() function to extract time
3. Year(), Month(), Day() function to extract date components - reference variable from #1
Hi mate,
Try this. Not the best option but works:
data dt;
date="2015-08-27T 8:36:00 ";
run;
data dt2;
set dt;
ST_Y = input(scan(date,1,"-"),Year.);
ST_M = input(scan(date,2,"-"),month.);
ST_D = input(scan(scan(date,1,"T"),3,"-"),day.);
ST_TM = input(scan(date,2,"T"),nltime10.);
format ST_TM nltime10.;
run;
Hope this helps
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.