亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
乌拉特后旗| 阿鲁科尔沁旗| 甘谷县| 鸡东县| 潼南县| 平昌县| 沙坪坝区| 垦利县| 新安县| 阜康市| 清新县| 衡水市| 中江县| 丹巴县| 定州市| 都江堰市| 马尔康县| 科技| 武鸣县| 三亚市| 东至县| 施秉县| 馆陶县| 双辽市| 西峡县| 长丰县| 永安市| 滕州市| 延津县| 五河县| 满洲里市| 涟水县| 静乐县| 台湾省| 庆城县| 白河县| 隆林| 阳新县| 灵台县| 双牌县| 长沙县|