将字符串从一个文本文件复制到另一个文本文件时,不会复制原始文件中的最后一行

when copying strings from one text file to another, the last line in the original file is not copied

编辑:将代码改成我的真实代码,因为我被告知我发布的缩短的代码无法编译。希望它有助于找到问题

我的结构如下:

struct patient {
    char name[30], ID[8];
    int age, phoneNo;
};

我写了下面的代码:

int searchName()
{
    char search[30];
    char record[60];
    const char s[2] = ",";
    struct patient c;
    int foundRecord = 0, linectr = 0;
    char a[8], str[200], tempname[] = "tempfile.txt", filename[] = "patient.txt";
    int IDno, temp = 999999;

    FILE* fPtr, *fPtr2;
    fPtr = fopen(filename, "r");

    printf("Enter name to to replace phoneNo with 999999: ");
    getchar();
    fgets(search, 30, stdin);

    //remove the '\n' at the end of string
    search[strcspn(search, "\n")] = 0;

    printf("Record found: ");

    while (fgets(record, 60, fPtr))
    {
        // strstr returns start address of substring in case if present
        if (strstr(record, search))
        {
            char* pStr = strtok(record, ",");
            if (pStr != NULL) {
                strcpy(c.ID, pStr);
            }
            pStr = strtok(NULL, ",");
            if (pStr != NULL) {
                strcpy(c.name, pStr);
            }
            pStr = strtok(NULL, ",");
            if (pStr != NULL) {
                c.age = atoi(pStr);
            }
            pStr = strtok(NULL, ",");
            if (pStr != NULL) {
                c.phoneNo = atoi(pStr);
            }
            printf("\n%s\t%s\t%d\t%d", c.ID, c.name, c.age, c.phoneNo);
            foundRecord++;
        }

    }
    if (foundRecord = 0)
        printf("%s cannot be found\n", search);
    
    strcpy(a, c.ID);
    sscanf(a, "PT%d", &IDno);

    fPtr = fopen(filename, "r");

    fPtr2 = fopen(tempname, "w");

    while (!feof(fPtr))
    {
        strcpy(str, "[=11=]");
        fgets(str, 100, fPtr);
        if (!feof(fPtr))
        {
            linectr++;
            if (linectr != IDno)
            {
                fprintf(fPtr2, "%s", str);
            }
            else
            {
                fprintf(fPtr2, "%s,%s,%d,%d\n", c.ID, c.name, c.age, temp);
            }
        }
    }
    fclose(fPtr);
    fclose(fPtr2);
    remove(filename);
    rename(tempname, filename);
    printf("\nReplacement successful. \n");
    return 0;
}

代码是这样工作的:我在一个名为 patient.txt 的文本文件中有一堆字符串,我想用字符串 i 替换文本文件中的一个字符串 (IDno)在此之前已存储在 struct patient c 中。该代码用于创建另一个文件并将字符串从原始文件 (patient.txt) 复制到新文件中,同时用新字符串替换原始字符串,但我注意到原始文件中的最后一个字符串总是被忽略.例如,我在原始文件中存储了以下 6 行:

PT1,John Doe,35,123456
PT2,Mary Ann,34,124684
PT3,John Lemmons,15,834945
PT4,James Bond,22,565453
PT5,Mary Sue,34,3435453
PT6,John Brown,54,3435346

当我搜索要替换的 Mary Ann(第 2 行)时,当我 运行 我的代码时,只有前 5 行(包括替换的第 2 行)被复制到新文件中。为什么最后一行没有被复制?另一个问题是我的代码中的 removerename 函数不起作用,我不确定为什么。如果有人能解释我如何解决这个问题,我将不胜感激。

将所有 while (!feof(fPtr)) 循环替换为:

    while (fgets(str, 100, fPtr) != NULL)
    {
        linectr++;
        if (linectr != IDno)
        {
            fprintf(fPtr2, "%s", str);
        }
        else
        {
            fprintf(fPtr2, "%s,%s,%d,%d\n", c.ID, c.name, c.age, temp);
        }
    }

虽然可能还有其他问题。

题外话:

  • 你应该检查 fopen 是否失败,这在现实世界中经常发生。
  • [15] 放入 char tempname[15] = "tempfile.txt" -> char tempname[] = "tempfile.txt"

使用 feof 最有可能出现问题,请参阅 Why is “while ( !feof (file) )” always wrong?,您可以使用 fgets return 值作为停止条件来创建更简单有效的 while 循环:

while (fgets(str, 100, fPtr)) //when file ends stop
{
    linectr++;
    if (linectr != IDno)
    {
        fprintf(fPtr2, "%s", str);
    }
    else
    {
        fprintf(fPtr2, "%s,%s,%d,%d\n", c.ID, c.name, c.age, temp);
    }
}

if (foundRecord = 0) 也有错别字,应该是 ==,那肯定是你的程序出轨了。