diff options
| author | Leonetienne <leonetienne@hotmail.de> | 2022-03-13 16:42:40 +0100 |
|---|---|---|
| committer | Leonetienne <leonetienne@hotmail.de> | 2022-03-13 16:42:40 +0100 |
| commit | 5fbf07f946995fed76804555a7a5e38f1ef94f38 (patch) | |
| tree | 7b63a9845580a70d0013a0b036d7073aa6176b5a /Exec | |
| parent | 25bd26972945f956ad4c92ce8a61bb6126c0dedb (diff) | |
Added tests for string-split, and fixed some bigs
Diffstat (limited to 'Exec')
| -rw-r--r-- | Exec/.main.cpp.swp | bin | 0 -> 12288 bytes | |||
| -rw-r--r-- | Exec/main.cpp | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/Exec/.main.cpp.swp b/Exec/.main.cpp.swp Binary files differnew file mode 100644 index 0000000..22cdcce --- /dev/null +++ b/Exec/.main.cpp.swp 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;
|
