gpt4 book ai didi

c - 在c中从txt中检索文本

转载 作者:行者123 更新时间:2023-11-30 19:12:41 27 4
gpt4 key购买 nike

所以我有一个txt文件,我想在c中为我的应用程序获取它,我必须获取()符号之间的数字,我该如何实现这一点。

(2)
(3,3)
(5,4)
(3)

到目前为止,我的代码如下:

char[] readFile(){
FILE *fileToRead;
fileToRead = open ("coordinates.txt", "r");

int coodinate[2];

Movimento movements; // this is where I put the coordinates

int i=0;
do{
fgets(coordinate[0], "%d", fileToRead);
fgets(coordinate[1], "%d", fileToRead);
}while (feof(fileToRead) == 0);

fclose(fileToRead);
return movements;
}

最佳答案

令人困惑的fopenopen以及fscanffgets。使用 fgets 逐行读取文件,然后解析每一行并获取坐标。您可以使用 isdigit() 来实现这一点。你可以有类似的东西:

FILE  *fileToRead;
char s[100] = "";
int coordinate[2] = {0};
int i=0, j = 0;

if((fileToRead = fopen ("t.txt", "r")))
{
while(fgets(s, 100, fileToRead))
{
puts(s);
for(i = 0; s[i] != '\0'; i++)
{
if(isdigit(s[i]))
{
coordinate[j] = s[i] - '0';
j++;
}
}
j = 0;
printf("%d %d\n", coordinate[0], coordinate[1]);
}
}

fclose(fileToRead);

关于c - 在c中从txt中检索文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36652963/

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