91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
瑞安市| 扬中市| 伊宁县| 绥化市| 惠安县| 宁津县| 卓资县| 阿合奇县| 罗江县| 云和县| 大荔县| 武夷山市| 新泰市| 中西区| 同江市| 仙桃市| 千阳县| 环江| 宜兰市| 新疆| 增城市| 惠东县| 南丰县| 原平市| 武山县| 克什克腾旗| 元谋县| 会同县| 吕梁市| 仲巴县| 昌乐县| 潮州市| 体育| 龙州县| 读书| 如东县| 谢通门县| 翼城县| 新化县| 茂名市| 临洮县|