gpt4 book ai didi

c - 使用 fgetc 和 fgets 从 .txt 文件中提取文本

转载 作者:行者123 更新时间:2023-11-30 15:26:45 26 4
gpt4 key购买 nike

我正在编写从 .txt 文档中提取文本的代码,但在调用 fgets() 时遇到问题。

FILE *textFile
// Opening file and checking for error in opening
textFile = fopen("textfile.txt", "r");

if (textFile != NULL) {
while((oneCharacter = fgetc(textFile)) != EOF) {
if (inputFromUser == 1) {
fgets(textLine, 80, textFile);
length = strlen(textLine);
printf("%s\n", textLine);
}

当我打印 lineOfText 时,它似乎省略了文本文件的第一个字母。例如,如果我要提取的文本是:

StackOverflow is great! 

它将打印:

tackOverflow is great!

我是否遗漏了 fgets() 语句语法中的任何内容?

最佳答案

使用

while(fgets(textLine, 80, textFile) != NULL)
{

// Code goes here
}

由于您正在执行fgetc(),您已经从文件中读取了第一个字符,其余部分由您的fgets()读取,因此您会看到您的输出中不存在第一个字符

关于c - 使用 fgetc 和 fgets 从 .txt 文件中提取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27300337/

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