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

溫馨提示×

c語言字符串中怎么查找字符串

小億
87
2024-08-05 19:14:11
欄目: 編程語言

在C語言中,可以使用標準庫函數strstr()來查找一個字符串中是否包含另一個字符串。strstr()函數的原型如下:

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

其中haystack是要查找的字符串,needle是要查找的子字符串。strstr()函數會返回一個指向needlehaystack中第一次出現的位置的指針,如果沒有找到,則返回NULL

下面是一個例子:

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

int main() {
    const char *haystack = "Hello, World!";
    const char *needle = "World";

    char *result = strstr(haystack, needle);

    if (result) {
        printf("The substring was found at position %ld\n", result - haystack);
    } else {
        printf("The substring was not found\n");
    }

    return 0;
}

上述代碼中,我們在haystack中查找needle字符串,如果找到,則打印出needle字符串在haystack中的位置,否則打印出未找到的信息。

0
盐津县| 江北区| 县级市| 杭锦旗| 富阳市| 广宁县| 肇庆市| 娄底市| 梁河县| 台前县| 济南市| 额尔古纳市| 荣成市| 法库县| 会理县| 崇仁县| 疏附县| 惠州市| 千阳县| 敦化市| 贡觉县| 金昌市| 平阴县| 惠东县| 水富县| 黑水县| 大埔区| 龙胜| 奉化市| 济阳县| 金溪县| 松滋市| 乌兰县| 察隅县| 邯郸市| 保德县| 额济纳旗| 谢通门县| 南阳市| 怀仁县| 镇巴县|