14 lines
258 B
C++
14 lines
258 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;
|
|
}
|