diff options
| author | Leonetienne <leon@etiennes.de> | 2022-05-16 23:57:26 +0200 |
|---|---|---|
| committer | Leonetienne <leon@etiennes.de> | 2022-05-16 23:57:26 +0200 |
| commit | 954629f6bc3b7753c5be0c08e0cdb5caf1056d23 (patch) | |
| tree | 33a95f60202135f9fcc689e081a64f2d274d7d99 /StringTools/exec | |
| parent | 1fe3eeb14470470d8c95c40c98a12c15320bcd57 (diff) | |
Adhere to new project structure
Diffstat (limited to 'StringTools/exec')
| -rw-r--r-- | StringTools/exec/main.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
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 <iostream> +#include <StringTools/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; +} |
