std::vector<std::string> vecTest;std::string findStr("test");bool found = std::find(vecTest.begin(), vecTest.end(), findStr...
std::vector<std::string> vecTest;std::string findStr("test");bool found = std::find(vecTest.begin(), vecTest.end(), findStr...