14 lines
262 B
C++
14 lines
262 B
C++
#include <iostream>
|
|
#include <StringTools.h>
|
|
|
|
int main()
|
|
{
|
|
std::vector<std::string> foo =
|
|
StringTools::Split(",,Hello,,lol,,test,,", ",,");
|
|
|
|
for (const auto& it : foo)
|
|
std::cout << "'" << it << "'" << std::endl;
|
|
|
|
return 0;
|
|
}
|