strstr()函数是“ string.h”头文件中的预定义函数,用于执行字符串处理。此函数用于查找子字符串的第一个匹配项,例如在主字符串中说str2,例如str1。
的语法strstr()
如下-
char *strstr( char *str1, char *str2);
strstr()
是str2是我们希望在主字符串str1中搜索的子字符串
strstr()
就是此函数返回在主字符串中找到的我们正在搜索的子字符串的第一个匹配项的地址指针,否则当主字符串中不存在子字符串时,它将返回null。
注–匹配过程不包括空字符('\ 0'),而是函数在遇到空字符时停止
Input: str1[] = {“Hello World”} str2[] = {“or”} Output: orld Input: str1[] = {“nhooo.com”} str2[] = {“ls”} Output: ls point
#include <string.h> #include <stdio.h> int main() { char str1[] = "Tutorials"; char str2[] = "tor"; char* ptr; //将在str1中找到str2的第一次出现 ptr = strstr(str1, str2); if (ptr) { printf("String is found\n"); printf("The occurrence of string '%s' in '%s' is '%s'", str2, str1, ptr); } else printf("String not found\n"); return 0; }
输出结果
如果我们运行上面的代码,它将生成以下输出-
String is found The occurrence of string 'tor' in 'Tutorials' is 'torials
现在,让我们尝试另一个应用程序 strstr()
我们还可以使用此函数来替换字符串的某个部分,例如,如果要在找到子字符串str2的第一个匹配项之后替换字符串str1。
Input: str1[] = {“Hello India”} str2[] = {“India”} str3[] = {“World”} Output: Hello World
说明-每当在str1中找到str2时,它将被替换为str3
#include <string.h> #include <stdio.h> int main() { //取任意两个字符串 char str1[] = "Tutorialshub"; char str2[] = "hub"; char str3[] = "point"; char* ptr; //查找str1中第一次出现的st2- ptr = strstr(str1, str2); //打印结果 if (ptr) { strcpy(ptr, str3); printf("%s\n", str1); } else printf("String not found\n"); return 0; }
输出结果
如果我们运行上面的代码,它将生成以下输出-
Nhooo