c++怎么判断字符串中是否包含某个字符

avatar
作者
猴君
阅读量:2

在C++中,你可以使用`std::string`类的成员函数`find()`来判断一个字符串中是否包含某个字符。`find()`函数返回该字符在字符串中第一次出现的位置,如果未找到,则返回一个特殊的值 `std::string::npos`。

以下是一个示例代码:

#include  #include  int main() {     std::string str = "Hello, World!";     char ch = 'o';          size_t found = str.find(ch);          if (found != std::string::npos) {         std::cout << "Character '" << ch << "' found at position " << found << std::endl;     } else {         std::cout << "Character '" << ch << "' not found in the string" << std::endl;     }          return 0; }

运行以上代码,输出将是:

Character 'o' found at position 4

如果你想要判断字符串中是否包含某个子字符串,可以使用`std::string`的另一个成员函数`find()`来完成。用法与上述示例类似,只需要将字符参数改为字符串参数即可。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!