用于搜索字符串C内的字符串的函数

时间:2017-05-18 16:49:56

标签: c string function

是否有搜索字符串内部字符串的函数? 例如:String:" Hello"。我想检查字符串" ell"在字符串里面" Hello"。

2 个答案:

答案 0 :(得分:0)

strstr()怎么样?

char *strstr(const char *haystack, const char *needle);

对于您的示例,只需执行以下操作:

char *ocurrence_str = strstr("Hello", "ell");

答案 1 :(得分:0)

使用库strstr()函数,它返回指向给定字符串中第一次出现的字符串的指针。

阅读strstr函数的man页面以获取更多信息。