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
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?
To just omit displaying the seconds, use the e8601dt16. format.
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' ;;;;
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!
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.