convert current date and time to char
9 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
Rik
2022-5-4
编辑:Rik
2022-5-4
datestr(now-6/24,31)
datestr(now_UTC-6/24,31)
If you want to force the use of UTC+0 as the timezone (as your Z seems to suggest), you might be interested in getUTC.
In the case of the online run tool there is no difference, as most servers (in my experience) already use UTC+0 as their time zone.
function t=now_UTC
persistent timezone_delta
if isempty(timezone_delta),timezone_delta=getUTC-now;end
t=now+timezone_delta;
end
0 个评论
更多回答(2 个)
John D'Errico
2022-5-4
编辑:John D'Errico
2022-5-4
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dates and Time 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!