在c中将字符串转换为时间格式
假设我有一个字符串“2011-08-21 21:48:45 +1200”,以及另一个具有相同格式的字符串,
我想比较这两个字符串,找出哪个是早的,哪个是晚的,
有没有一种简单的方法可以将字符串转换为时间格式而不是按字符进行比较? 谢谢
suppose I have a string "2011-08-21 21:48:45 +1200",and another one with the same format,
I want to compare these 2 strings to find out which one is the early one or later one,
is there a easy way to convert a string to time format rather than compare them by characters?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 getdate 或 strptime()。
use getdate or strptime().