在C++中,你可以使用标准库中的std::string
类的find()
成员函数来实现类似strchr
的功能
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, World!";
char ch = 'W';
size_t pos = str.find(ch);
if (pos != std::string::npos) {
std::cout << "字符 '" << ch << "' 在字符串中首次出现的位置是: " << pos << std::endl;
} else {
std::cout << "字符 '" << ch << "' 在字符串中未找到。" << std::endl;
}
return 0;
}
在这个示例中,我们使用std::string
类的find()
成员函数来查找字符’W’在字符串"Hello, World!"中首次出现的位置。如果找到了该字符,find()
函数将返回其位置(从0开始计数),否则返回std::string::npos
。