![]() |
SourcePP
Several modern C++20 libraries for sanely parsing Valve's formats.
|
Functions | |
| bool | contains (std::string_view s, char c) |
| bool | matches (std::string_view in, std::string_view search) |
| A very basic regex-like pattern checker for ASCII strings. | |
| bool | iequals (std::string_view s1, std::string_view s2) |
| void | ltrim (std::string &s) |
| std::string_view | ltrim (std::string_view s) |
| void | rtrim (std::string &s) |
| std::string_view | rtrim (std::string_view s) |
| void | trim (std::string &s) |
| std::string_view | trim (std::string_view s) |
| void | trimInternal (std::string &s) |
| std::string | trimInternal (std::string_view s) |
| void | ltrim (std::string &s, std::string_view chars) |
| std::string_view | ltrim (std::string_view s, std::string_view chars) |
| void | rtrim (std::string &s, std::string_view chars) |
| std::string_view | rtrim (std::string_view s, std::string_view chars) |
| void | trim (std::string &s, std::string_view chars) |
| std::string_view | trim (std::string_view s, std::string_view chars) |
| void | trimInternal (std::string &s, std::string_view chars) |
| std::string | trimInternal (std::string_view s, std::string_view chars) |
| std::vector< std::string > | split (std::string_view s, char delim) |
| void | toLower (std::string &input) |
| std::string | toLower (std::string_view input) |
| void | toUpper (std::string &input) |
| std::string | toUpper (std::string_view input) |
| std::string | createRandom (uint16_t length=32, std::string_view chars="0123456789_abcdefghijklmnopqrstuvwxyz-ABCDEFGHIJKLMNOPQRSTUVWXYZ") |
| std::string | generateUUIDv4 () |
| std::string | padNumber (int64_t number, int width) |
| void | normalizeSlashes (std::string &path, bool stripSlashPrefix=false, bool stripSlashSuffix=true) |
| void | denormalizeSlashes (std::string &path, bool stripSlashPrefix=false, bool stripSlashSuffix=true) |
| std::from_chars_result | toBool (std::string_view number, bool &out, int base=10) |
| std::from_chars_result | toInt (std::string_view number, std::integral auto &out, int base=10) |
| std::from_chars_result | toFloat (std::string_view number, std::floating_point auto &out) |
|
nodiscard |
Definition at line 21 of file String.cpp.
|
nodiscard |
Definition at line 186 of file String.cpp.
| void sourcepp::string::denormalizeSlashes | ( | std::string & | path, |
| bool | stripSlashPrefix = false, | ||
| bool | stripSlashSuffix = true ) |
Definition at line 236 of file String.cpp.
|
nodiscard |
Definition at line 198 of file String.cpp.
|
nodiscard |
Definition at line 62 of file String.cpp.
| void sourcepp::string::ltrim | ( | std::string & | s | ) |
Definition at line 68 of file String.cpp.
| void sourcepp::string::ltrim | ( | std::string & | s, |
| std::string_view | chars ) |
Definition at line 109 of file String.cpp.
|
nodiscard |
Definition at line 72 of file String.cpp.
|
nodiscard |
Definition at line 115 of file String.cpp.
|
nodiscard |
A very basic regex-like pattern checker for ASCII strings.
Supports: %? - matches any character w - matches a whitespace character (defined by std::isspace) a - matches a letter (A-Z, a-z) u - matches an uppercase letter (A-Z) l - matches a lowercase letter (a-z) d - matches a single digit (0-9) %% - escaped percent character
Definition at line 25 of file String.cpp.
| void sourcepp::string::normalizeSlashes | ( | std::string & | path, |
| bool | stripSlashPrefix = false, | ||
| bool | stripSlashSuffix = true ) |
Definition at line 226 of file String.cpp.
|
nodiscard |
Definition at line 222 of file String.cpp.
| void sourcepp::string::rtrim | ( | std::string & | s | ) |
Definition at line 79 of file String.cpp.
| void sourcepp::string::rtrim | ( | std::string & | s, |
| std::string_view | chars ) |
Definition at line 122 of file String.cpp.
|
nodiscard |
Definition at line 83 of file String.cpp.
|
nodiscard |
Definition at line 128 of file String.cpp.
|
nodiscard |
Definition at line 156 of file String.cpp.
| std::from_chars_result sourcepp::string::toBool | ( | std::string_view | number, |
| bool & | out, | ||
| int | base = 10 ) |
Definition at line 246 of file String.cpp.
| std::from_chars_result sourcepp::string::toFloat | ( | std::string_view | number, |
| std::floating_point auto & | out ) |
| std::from_chars_result sourcepp::string::toInt | ( | std::string_view | number, |
| std::integral auto & | out, | ||
| int | base = 10 ) |
| void sourcepp::string::toLower | ( | std::string & | input | ) |
Definition at line 166 of file String.cpp.
|
nodiscard |
Definition at line 170 of file String.cpp.
| void sourcepp::string::toUpper | ( | std::string & | input | ) |
Definition at line 176 of file String.cpp.
|
nodiscard |
Definition at line 180 of file String.cpp.
| void sourcepp::string::trim | ( | std::string & | s | ) |
Definition at line 90 of file String.cpp.
| void sourcepp::string::trim | ( | std::string & | s, |
| std::string_view | chars ) |
Definition at line 135 of file String.cpp.
|
nodiscard |
Definition at line 95 of file String.cpp.
|
nodiscard |
Definition at line 140 of file String.cpp.
| void sourcepp::string::trimInternal | ( | std::string & | s | ) |
Definition at line 99 of file String.cpp.
| void sourcepp::string::trimInternal | ( | std::string & | s, |
| std::string_view | chars ) |
Definition at line 144 of file String.cpp.
|
nodiscard |
Definition at line 103 of file String.cpp.
|
nodiscard |
Definition at line 148 of file String.cpp.