📌  相关文章
📜  如何在 C++ 代码示例中检查字符串是否包含字符

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

代码示例1
std::string s = "Hello";
if (s.find('e') != std::string::npos)
    cout << "Found";
else
    cout << "Not Found";