strchr() - C語言庫函式


C庫函式 char *strchr(const char *str, int c) 搜尋第一次出現的字串中的字元c(unsigned char型別)由引數str指向。

宣告

以下是strchr() 函式的宣告。

char *strchr(const char *str, int c)

引數

  • str -- 這是C字串要搜尋的。

  • c -- 這是str中的字元進行搜尋。

返回值

返回一個指向字串str,或字元c第一次出現的,如果沒有找到字元返回NULL。

例子

下面的例子顯示strchr() 函式的用法。

#include <stdio.h>
#include <string.h>

int main ()
{
   const char str[] = "/19/157/4594.html";
   const char ch = '.';
   char *ret;

   ret = strchr(str, ch);

   printf("String after |%c| is - |%s|
", ch, ret);
   
   return(0);
}

讓我們編譯和執行上面的程式,這將產生以下結果:

String after |.| is - |.tw511.com|