2

我有这个 C 中 strchr 函数的示例代码。

/* strchr example */
#include <stdio.h>
#include <string.h>

int main ()
{
  char str[] = "This is a sample string";
  char * pch;
  printf ("Looking for the 's' character in \"%s\"...\n",str);
  pch=strchr(str,'s');
  while (pch!=NULL)
  {
    printf ("found at %d\n",pch-str+1);
    pch=strchr(pch+1,'s');
  }
  return 0;
}

问题是,我不明白,这个程序如何计算正在寻找的角色的位置。我认为这与“pch”和“str”的指针有关,但是这是如何工作的呢?

如果有人可以更详细地解释这一点,那就太好了。

谢谢,埃尔约索

4

1 回答 1

8

str它只是从指向找到的结果的指针中减去指向字符串第一个字符的指针。

这便成为字符的位置,从 0 开始索引。这很容易理解,如果在字符串的第一个位置找到字符,则返回的指针将等于str,因此(pstr - str) == 0为真。添加一个使其从 1 开始,这有时对于演示目的很有用。

于 2012-11-12T11:34:53.653 回答