mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
wipeable_string: split - treat CR, LF and Tabs as separators
This commit is contained in:
parent
51873fec04
commit
0078ce7fac
2 changed files with 5 additions and 3 deletions
|
@ -188,13 +188,14 @@ void wipeable_string::split(std::vector<wipeable_string> &fields) const
|
|||
while (len--)
|
||||
{
|
||||
const char c = *ptr++;
|
||||
if (c != ' ')
|
||||
const bool space_prev = space;
|
||||
space = std::isspace(c);
|
||||
if (!space)
|
||||
{
|
||||
if (space)
|
||||
if (space_prev)
|
||||
fields.push_back({});
|
||||
fields.back().push_back(c);
|
||||
}
|
||||
space = c == ' ';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -182,6 +182,7 @@ TEST(wipeable_string, split)
|
|||
ASSERT_TRUE(check_split(" foo bar baz ", {"foo", "bar", "baz"}));
|
||||
ASSERT_TRUE(check_split(" foo bar baz", {"foo", "bar", "baz"}));
|
||||
ASSERT_TRUE(check_split("foo bar baz ", {"foo", "bar", "baz"}));
|
||||
ASSERT_TRUE(check_split("\tfoo\n bar\r\nbaz", {"foo", "bar", "baz"}));
|
||||
}
|
||||
|
||||
TEST(wipeable_string, parse_hexstr)
|
||||
|
|
Loading…
Reference in a new issue