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
6afaf1d4
Commit
6afaf1d4
authored
Apr 08, 2021
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
str_util add justify
parent
8e5b2e1d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
154 additions
and
4 deletions
+154
-4
str_util.h
jlib/util/str_util.h
+66
-4
test_strutil.cpp
test/test_strutil/test_strutil.cpp
+88
-0
No files found.
jlib/util/str_util.h
View file @
6afaf1d4
...
...
@@ -4,6 +4,8 @@
#include <algorithm>
#include <cctype>
#include <locale>
#include <vector>
namespace
jlib
{
...
...
@@ -82,11 +84,17 @@ inline StringContainer split(const StringType& str, const StringType& split_by)
}
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
));
while
(
pos
<
str
.
size
())
{
spos
=
str
.
find
(
split_by
,
pos
);
if
(
spos
!=
StringType
::
npos
)
{
if
(
spos
>
pos
)
{
result
.
push_back
(
str
.
substr
(
pos
,
spos
-
pos
));
}
pos
=
spos
+
split_by
.
size
();
}
else
if
(
pos
<
str
.
size
())
{
result
.
push_back
(
str
.
substr
(
pos
,
str
.
size
()
-
pos
));
break
;
}
pos
=
spos
+
split_by
.
size
();
}
return
result
;
}
...
...
@@ -190,4 +198,58 @@ inline bool ends_with(const std::wstring& str, const std::wstring& sub) {
}
/**************************** justify ***************************/
/*
These functions respectively left-justify, right-justify and center a string in a field of given width.
They return a string that is at least width characters wide, created by padding the string s with the
character fillchar (default is a space) until the given width on the right, left or both sides.
The string is never truncated.
*/
inline
std
::
string
ljust
(
const
std
::
string
&
str
,
size_t
width
,
char
fillchar
=
' '
)
{
if
(
str
.
size
()
>=
width
)
{
return
str
;
}
auto
s
=
str
;
while
(
s
.
size
()
<
width
)
{
s
.
push_back
(
fillchar
);
}
return
s
;
}
inline
std
::
string
rjust
(
const
std
::
string
&
str
,
size_t
width
,
char
fillchar
=
' '
)
{
if
(
str
.
size
()
>=
width
)
{
return
str
;
}
auto
s
=
str
;
while
(
s
.
size
()
<
width
)
{
s
.
insert
(
s
.
begin
(),
fillchar
);
}
return
s
;
}
inline
std
::
string
center
(
const
std
::
string
&
str
,
size_t
width
,
char
fillchar
=
' '
)
{
if
(
str
.
size
()
>=
width
)
{
return
str
;
}
auto
s
=
str
;
while
(
s
.
size
()
<
width
)
{
s
.
insert
(
s
.
begin
(),
fillchar
);
s
.
push_back
(
fillchar
);
}
if
(
s
.
size
()
>
width
)
{
s
.
pop_back
();
}
return
s
;
}
inline
std
::
wstring
ljust
(
const
std
::
wstring
&
str
,
size_t
width
,
wchar_t
fillchar
=
L' '
)
{
if
(
str
.
size
()
>=
width
)
{
return
str
;
}
auto
s
=
str
;
while
(
s
.
size
()
<
width
)
{
s
.
push_back
(
fillchar
);
}
return
s
;
}
inline
std
::
wstring
rjust
(
const
std
::
wstring
&
str
,
size_t
width
,
wchar_t
fillchar
=
L' '
)
{
if
(
str
.
size
()
>=
width
)
{
return
str
;
}
auto
s
=
str
;
while
(
s
.
size
()
<
width
)
{
s
.
insert
(
s
.
begin
(),
fillchar
);
}
return
s
;
}
inline
std
::
wstring
center
(
const
std
::
wstring
&
str
,
size_t
width
,
wchar_t
fillchar
=
L' '
)
{
if
(
str
.
size
()
>=
width
)
{
return
str
;
}
auto
s
=
str
;
while
(
s
.
size
()
<
width
)
{
s
.
insert
(
s
.
begin
(),
fillchar
);
s
.
push_back
(
fillchar
);
}
if
(
s
.
size
()
>
width
)
{
s
.
pop_back
();
}
return
s
;
}
}
// namespace jlib
test/test_strutil/test_strutil.cpp
View file @
6afaf1d4
...
...
@@ -71,6 +71,29 @@ int main()
assert
(
res
[
2
]
==
"c"
);
}
{
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
>
((
" a b c "
),
(
" "
));
assert
(
res
.
size
()
==
3
);
assert
(
res
[
0
]
==
"a"
);
assert
(
res
[
1
]
==
"b"
);
assert
(
res
[
2
]
==
"c"
);
}
{
auto
res
=
split
<
string
>
(
"-rw-r--r-- 1 root wheel 175346 Feb 27 05:32 bbpc-00000065-D33118295100A2B179E1BB05"
,
" "
);
res
.
size
();
}
{
auto
res
=
split
<
string
>
(
""
,
""
);
assert
(
res
.
empty
());
...
...
@@ -87,6 +110,44 @@ int main()
assert
(
res
.
empty
());
}
{
auto
res
=
split
<
string
>
(
" "
,
" "
);
assert
(
res
.
empty
());
}
{
auto
res
=
split
<
string
>
(
" abc"
,
" "
);
assert
(
res
.
size
()
==
1
);
assert
(
res
[
0
]
==
"abc"
);
}
{
auto
res
=
split
<
string
>
(
" abc "
,
" "
);
assert
(
res
.
size
()
==
1
);
assert
(
res
[
0
]
==
"abc"
);
}
{
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
>
(
" a b c d "
,
" "
);
assert
(
res
.
size
()
==
4
);
assert
(
res
[
0
]
==
"a"
);
assert
(
res
[
1
]
==
"b"
);
assert
(
res
[
2
]
==
"c"
);
assert
(
res
[
3
]
==
"d"
);
}
{
...
...
@@ -97,6 +158,14 @@ int main()
assert
(
res
[
2
]
==
L"c"
);
}
{
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
());
...
...
@@ -180,4 +249,23 @@ int main()
assert
(
!
ends_with
(
wstr
,
L"0abc123"
));
assert
(
!
ends_with
(
wstr
,
L"abc13"
));
}
// justify
{
std
::
string
str
=
"abc"
;
auto
res
=
ljust
(
str
,
5
);
assert
(
res
==
"abc "
);
res
=
rjust
(
str
,
5
);
assert
(
res
==
" abc"
);
res
=
center
(
str
,
5
);
assert
(
res
==
" abc "
);
str
=
"abcd"
;
res
=
center
(
str
,
5
);
assert
(
res
==
" abcd"
);
}
}
\ No newline at end of file
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