gpt4 book ai didi

c - 使用正则表达式解析以分号分隔的字符串

转载 作者:太空宇宙 更新时间:2023-11-04 07:08:01 26 4
gpt4 key购买 nike

我正在尝试使用正则表达式分隔一串数字。当数字用逗号分隔时,以下 C 代码有效:

#include <stdio.h>

int main()
{
char *multiple = "0.20,0.37,0.75,0.56";
char one[4];
char two[4];
char three[4];
char four[4];

sscanf(multiple, "%[^','], %[^','], %[^','], %[^',']", one, two, three, four);
printf("one %s, two %s, three %s, four %s\n", one, two, three, four);

return 0;
}

但是,在我的代码中,它们用分号分隔,我想做同样的事情。只是,它在这种情况下不起作用:

#include <stdio.h>

int main()
{
char *multiple = "0.20;0.37;0.75;0.56";
char one[4];
char two[4];
char three[4];
char four[4];

sscanf(multiple, "%[^';'], %[^';'], %[^';'], %[^';']", one, two, three, four);
printf("one %s, two %s, three %s, four %s\n", one, two, three, four);

return 0;
}

谁能告诉我为什么会这样以及如何解决?

最佳答案

scanf 不支持正则表达式。它支持给定字符集的字符串。当您的格式包含 %[^';'] 时,它匹配一个或多个字符的任何序列除了 ';。当您的格式包含逗号 (,) 时,它与逗号匹配。

所以当你说:

sscanf(multiple, "%[^';'], %[^';'], %[^';'], %[^';']", one, two, three, four);

它匹配除'; 之外的尽可能多的字符,并将它们存储在一个 中。然后它会尝试匹配一个 ,,这将失败(导致 scanf 返回 1 —— 一个匹配和存储的东西)因为任何逗号都将包含在 one 中——下一个字符只能是 ;'

你想要的是

if (sscanf(multiple, "%[^;];%[^;];%[^;];%[^;]", one, two, three, four) != 4)
/* failed -- do something appropriate */

您应该始终检查 scanf 的返回值以查看它是否匹配您的所有模式并抓取尽可能多的东西。

另请注意格式中缺少空格——空格将匹配(并跳过)字符串中任何 0 个或多个空白字符的序列。这实际上可能是您想要的(在您提取的每个字段中去除前导空格),但不是您所描述的

关于c - 使用正则表达式解析以分号分隔的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30803720/

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