BookmarkSubscribeRSS Feed
Aayushi_17
Quartz | Level 8

 

How to remove extra :00 in time

for eg:
input:
'2019-03-30T20:39:00'
'2019-01-30T19:15:00'
'2019-01-30'

desried output:
'2019-03-30T20:39'
'2019-01-30T19:15'
'2019-01-30'

 

Thanks in advance

3 REPLIES 3
Kurt_Bremser
Super User

A datetime value will always have a time component; if you want to keep a missing time component as such, you have to store date and time in separate variables.

What format is your data source? Remote database, text file, Excel?

Ksharp
Super User

Is it a STRING ?

 

data have;
input x $40.;
want=prxchange("s/:00'$/'/",1,strip(x));
datalines4;
'2019-03-30T20:39:00'
'2019-01-30T19:15:00'
'2019-01-30'
;;;;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 726 views
  • 0 likes
  • 3 in conversation