本文概述
- 字符串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
推荐阅读
- c字符串测试1
- c strupr()函数
- c strlwr()函数
- c strrev()函数
- c strcmp()函数
- c strcat()函数
- c strcpy()函数
- c strlen()函数
- c字符串函数