summaryrefslogtreecommitdiffstats
path: root/Exec/main.cpp
blob: ef956328503dda0bf34d6b2461b95a99e48b471b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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;
}