Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
72667023
Commit
72667023
authored
Oct 11, 2020
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
split
parent
0b41c6de
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
108 additions
and
2 deletions
+108
-2
str_util.h
jlib/util/str_util.h
+32
-2
test_strutil.cpp
test/test_strutil/test_strutil.cpp
+76
-0
No files found.
jlib/util/str_util.h
View file @
72667023
...
...
@@ -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
...
...
test/test_strutil/test_strutil.cpp
View file @
72667023
...
...
@@ -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"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment