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

溫馨提示×

C++ strstr函數的正確用法

c++
小樊
90
2024-06-13 18:26:41
欄目: 編程語言

strstr函數是用于在字符串中查找指定子字符串的函數。它的原型為:

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

其中,haystack是要在其中搜索的字符串,needle是要搜索的子字符串。

使用strstr函數的正確用法如下:

#include <iostream>
#include <cstring>

int main() {
    const char *haystack = "Hello, world!";
    const char *needle = "world";
    
    char *result = strstr(haystack, needle);
    
    if(result) {
        std::cout << "Found at position: " << result - haystack << std::endl;
    } else {
        std::cout << "Not found" << std::endl;
    }
    
    return 0;
}

上面的代碼首先定義了兩個字符串haystack和needle,然后調用strstr函數在haystack中查找needle字符串。如果找到了,則打印出其位置;否則打印出"Not found"。

0
高邑县| 瑞昌市| 石景山区| 庆元县| 龙岩市| 巨野县| 商丘市| 资兴市| 济阳县| 琼结县| 武冈市| 灵川县| 色达县| 温宿县| 浦县| 古交市| 通城县| 额尔古纳市| 瓦房店市| 牟定县| 滦平县| 昌黎县| 安徽省| 宜宾市| 施秉县| 江孜县| 泸水县| 昆明市| 合川市| 广汉市| 揭西县| 涿州市| 芒康县| 探索| 邛崃市| 鹤山市| 浦江县| 喀什市| 奉新县| 侯马市| 增城市|