Commit 72667023 authored by captainwong's avatar captainwong

split

parent 0b41c6de
......@@ -41,8 +41,8 @@ inline StringType trim_copy(StringType s) { trim(s); return s; }
/**************************** join ***************************/
/**
* @brief join 字符串
* @note StringType 可以为std::string或std::wstring
* @note StringContainer 必须为上述StringType的iterable容器类,如vector,list
* @note StringType 可以为 std::string 或 std::wstring
* @note StringContainer 必须为上述 StringType的iterable 容器类,如vector,list
*/
template <typename StringType, typename StringContainer>
inline StringType join(const StringContainer& container, const StringType& conjunction = StringType())
......@@ -62,6 +62,36 @@ inline StringType join(const StringContainer& container, const StringType& conju
}
/**************************** split ***************************/
/**
* @brief split 字符串
* @note StringType 可以为 std::string 或 std::wstring
* @note StringContainer 必须为上述StringType的iterable容器类,如vector,list
*/
template <typename StringType, typename StringContainer = typename std::vector<StringType>>
inline typename StringContainer split(const StringType& str, const StringType& split_by)
{
StringContainer result;
if (str.size() <= split_by.size()) {
return result;
} else if (split_by.empty()) {
if (!str.empty()) {
result.push_back(str);
}
return result;
}
using size_type = typename StringType::size_type;
size_type pos = 0, spos = 0;
while (pos < str.size() && (spos = str.find(split_by, pos)) != StringType::npos) {
if (spos > pos) {
result.push_back(str.substr(pos, spos - pos));
}
pos = spos + split_by.size();
}
return result;
}
/**************************** erase_all ***************************/
// taken from https://stackoverflow.com/a/20326454
......
......@@ -3,6 +3,29 @@
#include <vector>
#include <list>
//inline std::vector<std::string> mysplit(const std::string& str, const std::string& split_by)
//{
// std::vector<std::string> result;
// if (str.size() <= split_by.size()) {
// return result;
// } else if (split_by.empty()) {
// if (!str.empty()) {
// result.push_back(str);
// }
// return result;
// }
// using size_type = typename std::string::size_type;
// size_type pos = 0, spos = 0;
// while (pos < str.size() && (spos = str.find(split_by, pos)) != std::string::npos) {
// if (spos > pos) {
// result.push_back(str.substr(pos, spos - pos));
// }
// pos = spos + split_by.size();
// }
// return result;
//}
using namespace std;
using namespace jlib;
......@@ -38,6 +61,59 @@ int main()
assert(join(wl, wstring(L"-")) == L"d-e-f");
}
// split
{
{
auto res = split<string>((" a b c "), (" "));
assert(res.size() == 3);
assert(res[0] == "a");
assert(res[1] == "b");
assert(res[2] == "c");
}
{
auto res = split<string>("", "");
assert(res.empty());
}
{
auto res = split<string>(" ", "");
assert(res.size() == 1);
assert(res[0] == " ");
}
{
auto res = split<string>(" ", " ");
assert(res.empty());
}
{
auto res = split<wstring>((L" a b c "), (L" "));
assert(res.size() == 3);
assert(res[0] == L"a");
assert(res[1] == L"b");
assert(res[2] == L"c");
}
{
auto res = split<wstring>(L"", L"");
assert(res.empty());
}
{
auto res = split<wstring>(L" ", L"");
assert(res.size() == 1);
assert(res[0] == L" ");
}
{
auto res = split<wstring>(L" ", L" ");
assert(res.empty());
}
}
// remove_all
{
string str = "aabbcc";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment