使用 strtok 时如何跳过输入文件中的空行?

发布于 2024-11-14 06:45:35 字数 118 浏览 4 评论 0原文

我想使用 strtok 传递文件的行;值以逗号分隔。但是,strtok 也会读取仅包含空格的空行。在这种情况下不是应该返回空指针吗?

我怎么能忽略这样的一行呢?我尝试检查 NULL,但如上所述,它不起作用。

I want to pass lines of a file using strtok; the values are comma separated. However, strtok also reads blank lines which only contain spaces. Isn't it suppose to return a null pointer in such a situation?

How can I ignore such a line? I tried to check NULL, but as mentioned above it doesn't work.

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

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

发布评论

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

评论(1

dawn曙光 2024-11-21 06:45:35
void function_name(void)
{

  const char delimiter[] = ",";
  char line_read[9000];
  char keep_me[9000];
  int i = 0;

  while(fgets(line_read, sizeof(line_read), filename) != NULL)
  {
      /*
       * Check if the line read in contains anything
       */
      if(line_read != NULL){
          keep_me[i] = strtok(line_read, delimiter);
          i++;
          }
  }

}

所以要解释一下。

您正在使用 while 循环读取文件,该循环将整个文件逐行 (fgets) 读取到数组 line_read 中。

每次读入一行时,它都会检查该行是否包含任何内容(NULL 检查)。

如果它确实包含某些内容,则使用 strtok 解析它并将其读入 keep_me 中,否则它将保留在 line_read 数组中,而您显然不会这样做。不要在你的程序中使用。

void function_name(void)
{

  const char delimiter[] = ",";
  char line_read[9000];
  char keep_me[9000];
  int i = 0;

  while(fgets(line_read, sizeof(line_read), filename) != NULL)
  {
      /*
       * Check if the line read in contains anything
       */
      if(line_read != NULL){
          keep_me[i] = strtok(line_read, delimiter);
          i++;
          }
  }

}

So to explain.

You're reading in your file using a while loop which reads the entire file line by line (fgets) into the array line_read.

Every time it reads in a line it will check to see if it contains anything (the NULL check).

If it does contain something it was parse it using strtok and read it into keep_me otherwise it will stay in the line_read array which you obviously don't use in your program.

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