在C++中,你可以使用`std::string`類的成員函數(shù)`find()`來判斷一個字符串中是否包含某個字符。`find()`函數(shù)返回該字符在字符串中第一次出現(xiàn)的位置,如果未找到,則返回一個特殊的值 `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; }
運(yùn)行以上代碼,輸出將是:
Character 'o' found at position 4
如果你想要判斷字符串中是否包含某個子字符串,可以使用`std::string`的另一個成員函數(shù)`find()`來完成。用法與上述示例類似,只需要將字符參數(shù)改為字符串參數(shù)即可。