I have a Visual Studio 2008 C++ function where I'm given an array of null-terminated strings const char*
and a count of the number of strings in that array.
I'm looking for a clever way of turning an array of const char*
in to a std::vector< std::string >
/// @param count - number of strings in the array
/// @param array - array of null-terminated strings
/// @return - a vector of stl strings
std::vector< std::string > Convert( int count, const char* array[] );
Boost is fine, STL is fine.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…