2022-03-01 12:03:12 +03:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include "string/string.hpp"
|
2022-02-28 12:44:18 +03:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2022-03-01 12:03:12 +03:00
|
|
|
std::string str { "asdf,qwer,zxcv" };
|
|
|
|
hack::v_str v = hack::split_str(str, ',');
|
|
|
|
|
|
|
|
for (const auto& c : v) std::cout << c << std::endl;
|
2022-02-28 12:44:18 +03:00
|
|
|
}
|