- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在 stackoverflow 网站上查看了我的答案,我没有得到,所以我把它贴在这里。
我的问题是:
How to compare two time stamp in format
"Month Date hh:mm:ss"
?
我正在用 C 和 C++ 编写程序,时间是可显示的字符串格式。
示例:
time1 = "Mar 21 11:51:20"
time2 = "Mar 21 10:20:05"
我想比较 time1 和 tme2 并找出 time2
是否在之后 time1
并且我需要输出为 true
或 false
,如下所示:
if time2 > time1 then
i need output as 1
or
0 or -1 anything
我使用了 difftime(time2,time1)
,但它返回 time1
和 time2
之间的增量时间 diff
>.
我想检查是否更大。
如有任何帮助,请提前致谢
最佳答案
首先-使用 difftime 进行比较:
你可以简单地使用difftime()
函数比较时间并返回 1
或 -1
如下:
int comparetime(time_t time1,time_t time2){
return difftime(time1,time2) > 0.0 ? 1 : -1;
}
SECOND- 将字符串转换成时间:
如果您难以将 string
转换为 time_t
结构,您可以依次使用两个函数:
char *strptime(const char *buf, const char *format, struct tm *tm);
功能。将字符串转换为 struct tm
示例:要将日期时间字符串 "Mar 21 11:51:20 AM"
转换为 struct tm
,您需要三个合成字符串:
%b : Month name, can be either the full name or an abbreviation
%d : Day of the month [1–31].
%r : Time in AM/PM format of the locale. If not available in the locale time format, defaults to the POSIX time AM/PM format:%I:%M:%S %p
.
time_t mktime (struct tm * timeptr);
将 struct tm*
转换为 time_t
下面是我的示例程序:
#include <stdio.h>
#include <time.h>
int main(void){
time_t t1, t2;
struct tm *timeptr,tm1, tm2;
char* time1 = "Mar 21 11:51:20 AM";
char* time2 = "Mar 21 10:20:05 AM";
//(1) convert `String to tm`:
if(strptime(time1, "%b %d %r",&tm1) == NULL)
printf("\nstrptime failed\n");
if(strptime(time2, "%b %d %r",&tm2) == NULL)
printf("\nstrptime failed\n");
//(2) convert `tm to time_t`:
t1 = mktime(&tm1);
t2 = mktime(&tm2);
printf("\n t1 > t2 : %d", comparetime(t1, t2));
printf("\n t2 > t1 : %d", comparetime(t2, t1));
printf("\n");
return 1;
}
它如你所愿:
$ ./a.out
t1 > t2 : 1
t2 > t1 : -1
要计算两个日期之间的差异,请阅读:How do you find the difference between two dates in hours, in C?
关于c++ - 如何比较格式为 "Month Date hh:mm:ss"的两个时间戳以检查 +ve 或 -ve 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15555406/
给定一个带有多个 date_time 戳的字符串,我想 提取第一个戳及其前面的文本 候选字符串可以有一个或多个时间戳 后续的 date_time 戳记将被 sep="-" 隔开 后续date_time
是否可以合并从相机拍摄的文本和照片?我想在照片上标记日期和时间,但我在 Google 上找不到任何内容。 最佳答案 使用下面的代码来实现你所需要的。 Bitmap src = Bitm
有没有办法通过 Graph API 戳另一个用户?基于this post ,并使用 Graph Explorer ,我发布到“/USERID/pokes”,我已经授予它(Graph API 应用程序和
我有两个向左浮动的元素。一个是 body 的第一个 child ,另一个是容器的第一个 child ,容器是 body 的第二个 child 。 ...
我是一名优秀的程序员,十分优秀!