[置顶] strstr()函数-C语言

  包含文件:string.h
  函数名: strstr
  函数原型:extern char *strstr(char *str1, char *str2);
  功能:找出str2字符串在str1字符串中第一次出现的位置(不包括str2的串结束符)。

  返回值:返回该位置的指针,如找不到,返回空指针。

 

    #include <syslib.h>
  #include <string.h>
  main()
  {
  char *s="Golden Global View";
  char *l="lob";
  char *p;
  clrscr();
  p=strstr(s,l);
  if(p)
  printf("%s",p);
  else
  printf("Not Found!");
  getchar();
  return 0;
  }
  语法:* strstr(str1,str2)
  str1: 被查找目标 string expression to search.
  str2:要查找对象 The string expression to find.
  该函数返回str2第一次在str1中的位置,如果没有找到,返回NULL

你可能感兴趣的:(String,null,语言)