convert current date and time to char
Mostrar comentarios más antiguos
Hi,
I need 2 parameters. The first is the current date and time in the format: '2022-05-02T08:00:00Z'
The second is that datetime minus 6 hours as a char.
Anyone who can help me?
endtime = '2022-05-02T13:59:00Z'; %this needs to be the current datetime - 6 hours
starttime = '2022-05-02T08:00:00Z'; %This needs to be the current datetime
Respuesta aceptada
Más respuestas (2)
Avoid deprecated DATESTR and DATENUM.
one = datetime('now','Format','yyyy-MM-dd''T''HH:mm:ss''Z''')
two = one - hours(6)
2 comentarios
Dion Theunissen
el 6 de Mayo de 2022
Stephen23
el 6 de Mayo de 2022
"Is this also possible to distract 1 month?"
two = one - calmonths(1)
John D'Errico
el 4 de Mayo de 2022
Editada: John D'Errico
el 4 de Mayo de 2022
Easier than you think.
First, what is the current time?
format long g
CurrentTime = now
That might not seem terribly helpful. However, datestr will help a lot.
datestr(CurrentTime)
You want to see an offset of 6 hours before that time. That is 1/4 of a day.
datestr(CurrentTime - 1/4)
So we are getting there. But of course, it is not exactly in the format you wish to see. First we will fix the date part, and you want that in the form of Year, Month, Day. The integer part of the time reported by now is the date. For example, we can do this:
datestr(fix(CurrentTime),'yyyy-mm-dd')
And that gives you the date in a format as you desire. You can format the time part similarly.
datestr(CurrentTime - fix(CurrentTime),'HH:MM:SS')
And then you wanted a spare T and Z in there for some reason. So we might write a little helper function like this:
mytimeformat = @(CT) [datestr(CT,'yyyy-mm-dd'),'T',datestr(CT - fix(CT),'HH:MM:SS'),'Z'];
mytimeformat(CurrentTime)
As you can see, that formats a time and date in the way you want it, specifically with the extra characters in there. The second time you wanted to see was 6 hours before that.
mytimeformat(CurrentTime - 1/4)
I'm sure there re other ways to do this, but the point is, when you have a difficult problem to solve in MATLAB, start from something you can find. Then work with it. Perhaps you can massage that result into something close to what you need. Then keep on working at it. In the end, you will see it was easier than you thought all along.
Categorías
Más información sobre Dates and Time en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!