BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jenim514
Pyrite | Level 9

I have a date/time character string that looks like this:

 

02OCT07:2240

03APR07:1825

02OCT07:2240

 

I need some help converting this into a datetime sas format.  I think some combination of input and scan?

 

Help is appreciated!

 

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
SuryaKiran
Meteorite | Level 14

There are many way you can do, just apply which one fits your needs. Here another way for your queston:

 

DATA test;
FORMAT DATE DATETIME14.;
DATE_CHAR='02OCT07:2240';
DATE=INPUT(CATX(":",SUBSTR(DATE_CHAR,1,10),SUBSTR(DATE_CHAR,11)),DATETIME14.);
RUN;
Thanks,
Suryakiran

View solution in original post

3 REPLIES 3
Reeza
Super User

Did you try INPUT with the ANYDTDTM. informat?

Shmuel
Garnet | Level 18

Read the input variable as a string, split it and then convert it to sas date/time variables.

See next code example:

 

data dtime;
      string = '02OCT07:2240';

     date = input(scan(string,1,':'), date7.);
     hh = input(substr(string,9,2),2.);
     mm = input(substr(string,11,2),2.);

     dtime = dhms(date,hh,mm,0);

    format date date9.    /* check also ddmmyy10. */
               dtime datetime15.;
run;

check the result of above code and adapt it to your needs.

SuryaKiran
Meteorite | Level 14

There are many way you can do, just apply which one fits your needs. Here another way for your queston:

 

DATA test;
FORMAT DATE DATETIME14.;
DATE_CHAR='02OCT07:2240';
DATE=INPUT(CATX(":",SUBSTR(DATE_CHAR,1,10),SUBSTR(DATE_CHAR,11)),DATETIME14.);
RUN;
Thanks,
Suryakiran

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 21979 views
  • 4 likes
  • 4 in conversation