Here is an example:
data example;
input char $;
timevar = input(char,time.);
format timevar tod5.;
datalines;
04:25
8:37
11:30
9:14
;
Create a new variable with the input function (or read it with the TIME. informat when reading the data into SAS) then apply the TOD5. format. The TOD (time of day) format will default to 8 characters including seconds, using the 5 shows HH:MM only.
@JillChen0131 wrote:
I have some time in character format, like below:
04:25
8:37
11:30
9:14
I would like to show all time in HH:MM format, if only one digit, add a "0" in the beginning.
Can anyone help with this?