最佳答案
下面的代码片段中的短语 std::string::npos
是什么意思?
found = str.find(str2);
if (found != std::string::npos)
std::cout << "first 'needle' found at: " << int(found) << std::endl;