Commit 6afaf1d4 authored by captainwong's avatar captainwong

str_util add justify

parent 8e5b2e1d
......@@ -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) {
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;
}
}
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
......@@ -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,8 +110,54 @@ 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");
}
{
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" a b c "), (L" "));
assert(res.size() == 3);
......@@ -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
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