Added tests for string-split, and fixed some bigs

This commit is contained in:
Leonetienne
2022-03-13 16:42:40 +01:00
parent 25bd269729
commit 5fbf07f946
6 changed files with 178 additions and 9 deletions

BIN
Exec/.main.cpp.swp Normal file

Binary file not shown.

View File

@@ -4,7 +4,7 @@
int main()
{
std::vector<std::string> foo =
StringTools::Split("Hello, lol, test", ", ");
StringTools::Split(",,Hello,,lol,,test,,", ",,");
for (const auto& it : foo)
std::cout << "'" << it << "'" << std::endl;