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
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.