gpt4 book ai didi

c中配置文件解析字符串匹配错误

转载 作者:行者123 更新时间:2023-11-30 16:41:37 25 4
gpt4 key购买 nike

虽然我知道有用于配置文件解析的库,但我尝试编写自己的实现。问题是我可以找到配置选项,但当我尝试将其与我正在搜索的内容进行比较时,比较分隔符之前的字符串会失败。我需要将它与我正在搜索的内容进行比较,因为我的程序允许像 Test2 和 Test3 这样的内容,因为它无法检查单词 Test 之前或之后是否有字符。比较总是失败,我不明白为什么。这是我的代码:

主.c

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

void Parser(char *CONFIG_FILE, int *P_VALUE, char *STRING_TO_LOOK_FOR);

int main(){
int VALUE;
Parser("config.txt", &VALUE, "Test");
printf("%d \n", VALUE);
}

解析器.c:

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

void Parser(char *CONFIG_FILE, int *P_VALUE, char *STRING_TO_LOOK_FOR){
FILE *FP=fopen(CONFIG_FILE,"a+");
char TMP[256]={0x0};
int i = 1;
while(FP!=NULL && fgets(TMP, sizeof(TMP), FP)!=NULL){ //Loop through every line
i=i+1; //Increment the line number
if (strstr(TMP, STRING_TO_LOOK_FOR)){ //Is the term im looking for in this line
char *NAME_OF_CONFIG_STR = strtok(TMP, "= "); //look for delimiter
char *STRVALUE = strtok(NULL, "= "); //Get everything past the delimiter
char *P_PTR;
char *pos;
if ((pos=strchr(NAME_OF_CONFIG_STR, '\n')) != NULL){ //attempt remove \n doesn't work
*pos = '\0';
}

if(strcmp(STRING_TO_LOOK_FOR, NAME_OF_CONFIG_STR) == 0){ //try to check the two are the same
*P_VALUE = strtol(STRVALUE, &P_PTR, 10); //Returns an integer to main of the value
}
}
}
if(FP != NULL){
fclose(FP);
}
}

配置.txt:

Test= 1234
Test2= 5678
Test3= 9012

最佳答案

感谢 BLUEPIXY 和他们创建的演示,这个问题已经得到解决。问题出在 gcc 编译器选项中,我忘记了 -std=99 ,这导致程序正常运行。

关于c中配置文件解析字符串匹配错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46194642/

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