c strstr()函数

本文概述

  • 字符串strstr()参数
  • 字符串strstr()示例
strstr()函数返回指针,该指针指向给定字符串中匹配字符串的第一个匹配项。它用于返回从第一个匹配到最后一个字符的子字符串。
句法:
char *strstr(const char *string, const char *match)

字符串strstr()参数string:表示从中搜索子字符串的完整字符串。
match:表示要在完整字符串中搜索的子字符串。
字符串strstr()示例
#include< stdio.h> #include < string.h> int main(){ char str[100]="this is srcmini with c and java"; char *sub; sub=strstr(str, "java"); printf("\nSubstring is: %s", sub); return 0; }

【c strstr()函数】输出:
srcmini with c and java

    推荐阅读