如何读取C中的文本行

发布于 2024-11-30 11:08:41 字数 79 浏览 2 评论 0原文

我需要从文本文件中获取行。我已经知道每行的长度不会超过 70 个字符。
我有一个关于如何做到这一点的想法,但我正在寻找一个标准解决方案。

I need to get lines from a text file. I already know that the lines won't be longer than 70 chars.
I have an idea about how to do it, but I'm looking a standard solution.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

┊风居住的梦幻卍 2024-12-07 11:08:41

也许是这样的?

char line[MAXLEN];

while(fgets(line, sizeof(line), fp)) {
    /* Do something with line. */
}

Maybe something like this ?

char line[MAXLEN];

while(fgets(line, sizeof(line), fp)) {
    /* Do something with line. */
}
宛菡 2024-12-07 11:08:41

不要忘记,如果您正在读取文件,则需要有一个文件指针并指示您想对文件执行什么操作。即 r ->读,w->写。所以看来您想读取该文件。
所以......

Usage: gcc read.c -o read 
"read input.txt"

#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[] ){
FILE *fp;
char buffer[70];
fp = fopen(argv[1], "r");

while(fgets(buffer,70,fp) != NULL){
puts(buffer);
}
fclose(fp);
}

这从命令行获取文件input.txt,将其放入字符缓冲区中,打印它,然后重复直到文件末尾。

干杯

Don't forget that if you're reading in a file you need to have a file pointer and indicate what you want to do with the file. i.e. r -> read, w-> write. So it looks like you want to read the file.
So.....

Usage: gcc read.c -o read 
"read input.txt"

#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[] ){
FILE *fp;
char buffer[70];
fp = fopen(argv[1], "r");

while(fgets(buffer,70,fp) != NULL){
puts(buffer);
}
fclose(fp);
}

This takes in the file input.txt from the command line, puts it in the char buffer, prints it, and repeats until end of file.

Cheers

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文