gpt4 book ai didi

c - 固定格式字符串中的 strptime 处理空间

转载 作者:太空狗 更新时间:2023-10-29 12:25:03 24 4
gpt4 key购买 nike

有没有办法让 strptime() 处理固定格式的时间字符串?

我需要解析一个始终采用固定宽度格式的时间字符串:“yymmdd HHMMSS”,但复杂的是前导零有时存在有时不存在。

阅读 strptime 的 man(3p) 页面,我注意到对于所有转换说明符 %y, %m, %d, %H, %M, %S 注释为“允许但不要求前导零”。因此,我尝试使用格式说明符 %y%m%d %H%M%S,天真地希望 strptime 能够识别两个子字符串中的空格 %y %m%d%H%M%S 等同于(缺少)前导零。

这似乎适用于说明符 %m,但不适用于 %M(好吧,除非第二部分小于 10),如以下片段所示代码

#include <stdio.h>
#include <time.h>


int main() {
struct tm buff;
const char ts[]="17 310 22 312";
char st[14];

strptime(ts,"%y%m%d %H%M%S", &buff);
strftime(st,14,"%y%m%d %H%M%S",&buff);

printf("%s\n",ts);
printf("%s\n",st);
return 0;
}

在我的机器上编译和运行输出

17 310 22 312
170310 223102

任何关于如何克服这个问题的见解都将不胜感激,或者我是否需要在使用 atoi 转换为整数以填充我的 时手动截断字符串 2 个字符struct tm 实例与?

最佳答案

最好让生成数据的代码固定为不稳定的格式。

假设今天早上无法做到这一点,那么也许您应该规范化(副本)不稳定的数据,如下所示:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

static inline void canonicalize(char *str, int begin, int end)
{
for (int i = begin; i <= end; i++)
{
if (str[i] == ' ')
str[i] = '0';
}
}

int main(void)
{
struct tm buff;
const char ts[] = "17 310 22 312";
char st[32];

char *raw = strdup(ts);

printf("[%s] => ", raw);
canonicalize(raw, 0, 5);
canonicalize(raw, 7, 12);
printf("[%s] => ", raw);
strptime(raw, "%y%m%d %H%M%S", &buff);
strftime(st, sizeof(st), "%y%m%d %H%M%S", &buff);
printf("[%s] => ", st);
strftime(st, sizeof(st), "%Y-%m-%d %H:%M:%S", &buff);
printf("[%s]\n", st);
free(raw);
return 0;
}

canonicalize() 函数将字符串的给定范围内的空白替换为零。很明显,如果你指定了越界的起点和终点,它就会越界。我在 ts 上保留了 const 并用 strdup() 做了一个副本;如果您可以将字符串视为可变数据,则无需制作(或释放)副本。

该代码的输出是:

[17 310 22 312] => [170310 220312] => [170310 220312] => [2017-03-10 22:03:12]

关于c - 固定格式字符串中的 strptime 处理空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44502318/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com