From 954629f6bc3b7753c5be0c08e0cdb5caf1056d23 Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Mon, 16 May 2022 23:57:26 +0200 Subject: Adhere to new project structure --- StringTools/exec/main.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 StringTools/exec/main.cpp (limited to 'StringTools/exec') diff --git a/StringTools/exec/main.cpp b/StringTools/exec/main.cpp new file mode 100644 index 0000000..2be6aa4 --- /dev/null +++ b/StringTools/exec/main.cpp @@ -0,0 +1,13 @@ +#include +#include + +int main() +{ + std::vector foo = + StringTools::Split(",,Hello,,lol,,test,,", ",,"); + + for (const auto& it : foo) + std::cout << "'" << it << "'" << std::endl; + + return 0; +} -- cgit v1.2.3