中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C語言函數strstr如何使用

小億
109
2023-09-29 00:38:39
欄目: 編程語言

函數strstr用于在一個字符串中搜索另一個字符串的出現位置。它的聲明如下:

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

其中,haystack表示要搜索的字符串,needle表示要搜索的子字符串。

使用方法如下:

#include <stdio.h>
#include <string.h>
int main()
{
const char *haystack = "Hello, World!";
const char *needle = "World";
char *result = strstr(haystack, needle);
if(result != NULL)
{
printf("'%s' is found in '%s' at position %ld\n", needle, haystack, result - haystack);
}
else
{
printf("'%s' is not found in '%s'\n", needle, haystack);
}
return 0;
}

輸出結果為:

'World' is found in 'Hello, World!' at position 7

上述代碼中,首先定義了一個haystack字符串和一個needle字符串。然后使用strstr函數在haystack字符串中搜索needle字符串的出現位置。如果找到了,則返回指向該位置的指針;如果未找到,則返回NULL。最后根據返回的結果進行相應的輸出。

0
三江| 新田县| 祁阳县| 武邑县| 兴化市| 长泰县| 运城市| 麦盖提县| 五峰| 安龙县| 鸡东县| 深州市| 察哈| 岑溪市| 民勤县| 南皮县| 凤翔县| 英超| 建宁县| 聂荣县| 辛集市| 遂昌县| 缙云县| 响水县| 于都县| 绍兴市| 合肥市| 手游| 唐山市| 兴安盟| 中卫市| 桐梓县| 隆回县| 承德县| 搜索| 凤凰县| 利辛县| 呼图壁县| 汝城县| 锦州市| 堆龙德庆县|