hack/bin/main.cpp
2022-03-01 12:03:12 +03:00

12 lines
229 B
C++

#include <iostream>
#include "string/string.hpp"
int main(int argc, char *argv[])
{
std::string str { "asdf,qwer,zxcv" };
hack::v_str v = hack::split_str(str, ',');
for (const auto& c : v) std::cout << c << std::endl;
}