|
bool | utils::isnewline (const char c) |
|
bool | utils::portable_isspace (const char c) |
|
bool | utils::notspace (const char c) |
|
void | utils::trim (std::string_view &s) |
|
std::vector< std::string > | utils::split (std::string_view s, const char sep, const int flags) |
| Splits a (comma-)separated string into a vector of pieces. More...
|
|
std::set< std::string > | utils::split_set (std::string_view s, char sep, const int flags) |
|
std::vector< std::string_view > | utils::split_view (std::string_view s, const char sep, const int flags) |
|
std::vector< std::string > | utils::square_parenthetical_split (const std::string &val, const char separator=',', const std::string &left="([", const std::string &right=")]", const int flags=REMOVE_EMPTY|STRIP_SPACES) |
| Similar to parenthetical_split, but also expands embedded square brackets. More...
|
|
std::map< std::string, std::string > | utils::map_split (const std::string &val, char major=',', char minor=':', int flags=REMOVE_EMPTY|STRIP_SPACES, const std::string &default_value="") |
| Splits a string based on two separators into a map. More...
|
|
std::vector< std::string > | utils::parenthetical_split (std::string_view val, const char separator=0, std::string_view left="(", std::string_view right=")", const int flags=REMOVE_EMPTY|STRIP_SPACES) |
| Splits a string based either on a separator, except then the text appears within specified parenthesis. More...
|
|
int | utils::apply_modifier (const int number, const std::string &amount, const int minimum) |
|
std::string | utils::escape (const std::string &str, const char *special_chars) |
| Prepends a configurable set of characters with a backslash. More...
|
|
static void | utils::si_string_impl_stream_write (std::stringstream &ss, double input) |
|
static bool | utils::is_username_char (char c) |
|
static bool | utils::is_wildcard_char (char c) |
|
static bool | utils::is_word_boundary (char c) |
|
std::string | utils::indent (const std::string &string, std::size_t indent_size=4) |
| Indent a block of text. More...
|
|
std::vector< std::string > | utils::quoted_split (const std::string &val, char c=',', int flags=REMOVE_EMPTY|STRIP_SPACES, char quote='\\') |
| This function is identical to split(), except it does not split when it otherwise would if the previous character was identical to the parameter 'quote' (i.e. More...
|
|
std::pair< int, int > | utils::parse_range (const std::string &str) |
| Recognises the following patterns, and returns a {min, max} pair. More...
|
|
std::pair< double, double > | utils::parse_range_real (const std::string &str) |
| Recognises similar patterns to parse_range, and returns a {min, max} pair. More...
|
|
std::vector< std::pair< int, int > > | utils::parse_ranges_unsigned (const std::string &str) |
| Handles a comma-separated list of inputs to parse_range, in a context that does not expect negative values. More...
|
|
std::vector< std::pair< double, double > > | utils::parse_ranges_real (const std::string &str) |
|
std::vector< std::pair< int, int > > | utils::parse_ranges_int (const std::string &str) |
| Handles a comma-separated list of inputs to parse_range. More...
|
|
|
std::string | utils::unescape (const std::string &str) |
| Remove all escape characters (backslash) More...
|
|
std::string | utils::urlencode (const std::string &str) |
| Percent-escape characters in a UTF-8 string intended to be part of a URL. More...
|
|
bool | utils::string_bool (const std::string &str, bool def=false) |
| Convert no, false, off, 0, 0.0 to false, empty to def, and others to true. More...
|
|
std::string | utils::bool_string (const bool value) |
| Converts a bool value to 'true' or 'false'. More...
|
|
std::string | utils::signed_value (int val) |
| Convert into a signed value (using the Unicode "−" and +0 convention. More...
|
|
std::string | utils::half_signed_value (int val) |
| Sign with Unicode "−" if negative. More...
|
|
std::string | utils::si_string (double input, bool base2, const std::string &unit) |
| Convert into a string with an SI-postfix. More...
|
|
bool | utils::isvalid_username (const std::string &login) |
| Check if the username contains only valid characters. More...
|
|
bool | utils::isvalid_wildcard (const std::string &login) |
| Check if the username pattern contains only valid characters. More...
|
|
bool | utils::word_completion (std::string &text, std::vector< std::string > &wordlist) |
| Try to complete the last word of 'text' with the 'wordlist'. More...
|
|
bool | utils::word_match (const std::string &message, const std::string &word) |
| Check if a message contains a word. More...
|
|
bool | utils::wildcard_string_match (const std::string &str, const std::string &match) |
| Match using '*' as any number of characters (including none), '+' as one or more characters, and '?' as any one character. More...
|
|
void | utils::to_sql_wildcards (std::string &str, bool underscores=true) |
| Converts '*' to '' and optionally escapes '_'. More...
|
|
void | utils::ellipsis_truncate (std::string &str, const std::size_t size) |
| Truncates a string to a given utf-8 character count and then appends an ellipsis. More...
|
|
Various string-routines.
Definition in file string_utils.cpp.