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

溫馨提示×

c語言怎么在字符串中查找指定字符串

小億
240
2024-04-12 11:43:55
欄目: 編程語言

在C語言中,可以使用strstr()函數來在一個字符串中查找另一個字符串。該函數的原型為:

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

其中,haystack是要查找的字符串,needle是要查找的子字符串。該函數返回子字符串在字符串中的第一個匹配位置的指針,如果未找到則返回NULL。

下面是一個示例代碼:

#include <stdio.h>
#include <string.h>

int main() {
    char str1[] = "Hello, world!";
    char str2[] = "world";

    char *ptr = strstr(str1, str2);

    if (ptr) {
        printf("'%s' found at position %ld\n", str2, ptr - str1);
    } else {
        printf("'%s' not found\n", str2);
    }

    return 0;
}

運行結果為:

'world' found at position 7

0
顺平县| 大方县| 资源县| 延安市| 建阳市| 辽宁省| 鹿泉市| 吴堡县| 惠东县| 当雄县| 齐齐哈尔市| 中超| 湘乡市| 岳阳市| 永平县| 涞水县| 辽阳县| 浮山县| 稷山县| 温宿县| 勐海县| 静乐县| 哈密市| 西平县| 赤峰市| 华亭县| 社旗县| 朝阳市| 灵武市| 临潭县| 调兵山市| 浑源县| 宣恩县| 磴口县| 德保县| 石柱| 吉安县| 罗甸县| 阜康市| 枣强县| 七台河市|