如何读取直到文件末尾?

发布于 2024-10-19 01:13:30 字数 253 浏览 2 评论 0原文

在 C 中,我可以读取输入并在到达文件末尾 (EOF) 时停止程序。就像这样。

#include <stdio.h>

int main(void) {
    int a;       
    while (scanf("%d", &a) != EOF)
        printf("%d\n", a);
    return 0;
}

我怎样才能在Lua中做到这一点?

In C, I can read an input and stop the program when it reaches the end of file (EOF). Like so.

#include <stdio.h>

int main(void) {
    int a;       
    while (scanf("%d", &a) != EOF)
        printf("%d\n", a);
    return 0;
}

How can I do that in Lua?

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

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

发布评论

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

评论(2

傾城如夢未必闌珊 2024-10-26 01:13:30

Lua 文档 提供了大量有关文件读取和其他 IO 的详细信息。要读取整个文件,请使用:

t = io.read("*all")

该文档有有关逐行读取等的示例。希望这会有所帮助。

读取文件的所有行并对每一行进行编号(逐行)的示例:

   local count = 1
    while true do
      local line = io.read()
      if line == nil then break end
      io.write(string.format("%6d  ", count), line, "\n")
      count = count + 1
    end

The Lua Documentation features a ton of details on file-reading and other IO. For reading an entire file use:

t = io.read("*all")

The documentation has examples on reading line-by-line etc. Hope this helps.

Example on reading all lines of a file and numbering each of them (line-by-line):

   local count = 1
    while true do
      local line = io.read()
      if line == nil then break end
      io.write(string.format("%6d  ", count), line, "\n")
      count = count + 1
    end
舂唻埖巳落 2024-10-26 01:13:30

对于lua中的类似程序,您可以逐行读取它并检查该行是否为nil(当该行为EOF时返回)。

while true do
  local line = io.read()
  if (line == nil) then break end
end

For a similar program in lua, you can read it line by line and check if the line is nil(which is returned when the line is EOF).

while true do
  local line = io.read()
  if (line == nil) then break end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文