📌  相关文章
📜  c++ 检查字符串是否包含子字符串 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:58.389000             🧑  作者: Mango

代码示例2
if (s1.find(s2) != std::string::npos) {
    std::cout << "found!" << '\n';
}