从字符串创建时间
我想减去时间以获得小时和分钟的结果(不是日期),例如
02/26/2006 06:25 PM
减去
02/26/2006 06:23 PM
变成
2 分钟
另外,我想要的时间要减去的是字符串,而不是日期时间对象。
I want to subtract time as to get a result of hour and minutes (not a date), for instance
02/26/2006 06:25 PM
minus
02/26/2006 06:23 PM
Into
2 Minutes
Also, the times I want to subtract from are strings, not datetime objects.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将字符串转换为日期/时间对象。然后您将能够利用日期函数。获取以分钟为单位的总差值,简单除法/取模即可得到总小时和分钟。
Convert the strings to date/time objects. Then you will be able to take advantage of date functions. Get the total difference in minutes and simple division / mod will give you the total hours and minutes.