summaryrefslogtreecommitdiffstats
path: root/Exec
diff options
context:
space:
mode:
authorLeonetienne <leonetienne@hotmail.de>2022-03-13 16:42:40 +0100
committerLeonetienne <leonetienne@hotmail.de>2022-03-13 16:42:40 +0100
commit5fbf07f946995fed76804555a7a5e38f1ef94f38 (patch)
tree7b63a9845580a70d0013a0b036d7073aa6176b5a /Exec
parent25bd26972945f956ad4c92ce8a61bb6126c0dedb (diff)
Added tests for string-split, and fixed some bigs
Diffstat (limited to 'Exec')
-rw-r--r--Exec/.main.cpp.swpbin0 -> 12288 bytes
-rw-r--r--Exec/main.cpp2
2 files changed, 1 insertions, 1 deletions
diff --git a/Exec/.main.cpp.swp b/Exec/.main.cpp.swp
new file mode 100644
index 0000000..22cdcce
--- /dev/null
+++ b/Exec/.main.cpp.swp
Binary files differ
diff --git a/Exec/main.cpp b/Exec/main.cpp
index bb337a5..ef95632 100644
--- a/Exec/main.cpp
+++ b/Exec/main.cpp
@@ -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;