![]() |
LogDoctor 4.00
Parse Apache2/Nginx/IIS logs and view dinamically generated statistics
|
Functions | |
size_t | count (std::string_view str, std::string_view flag) noexcept |
Counts the occurrences of the given sequence in the given string. | |
bool | isNumeric (QStringView str) noexcept |
Checks whether a string only contains numeric characters. | |
std::string | strip (const std::string &str, const char chr) noexcept |
Strips the given character from both the left and the right side of a string. | |
std::string | strip (const std::string &str, const char *chars=" \n\t\b\r\v") noexcept |
Strips the given characters from both the left and the right side of a string. | |
std::string | lstrip (const std::string &str, const char chr) noexcept |
Strips the given character from the left side of a string. | |
std::string | lstrip (const std::string &str, const char *chars=" \n\t\b\r\v") noexcept |
Strips the given characters from the left side of a string. | |
std::string | rstrip (const std::string &str, const char chr) noexcept |
Strips the given character from the right side of a string. | |
std::string | rstrip (const std::string &str, const char *chars=" \n\t\b\r\v") noexcept |
Strips the given characters from the right side of a string. | |
std::string | lstripUntil (const std::string &str, const char delim, const bool inclusive=true, const bool consecutives=true) noexcept |
Strips everything from a string starting from the left side untill the delimiter is found (a.k.a. cut) | |
void | split (std::vector< std::string > &list, const std::string &target_str, const char separator='\n') noexcept |
Splits a string using a separator. | |
void | split (std::vector< std::string > &list, const std::string &target_str, std::string_view separator) noexcept |
Splits a string using a separator. | |
void | splitrip (std::vector< std::string > &list, const std::string &target_str, const char separator='\n', const char *strips=" \n\t\b\r\v") noexcept |
Splits a string and strips all the splitted items. | |
void | splitrip (std::vector< std::string > &list, const std::string &target_str, const char *separator, const char *strips=" \n\t\b\r\v") noexcept |
Splits a string and strips all the splitted items. | |
std::string | replace (std::string_view str, std::string_view target, std::string_view replace) noexcept |
Replaces all the occurrences of a sequence with another. | |
std::string | toUpper (std::string_view str) noexcept |
Converts a string to upper case. | |
std::string | toLower (std::string_view str) noexcept |
Converts a string to lower case. | |
size_t | count (std::string_view str, const char flag) noexcept |
Counts the occurrences of the given sequence in the given string. | |
bool | isNumeric (std::string_view str) noexcept |
Checks whether a string only contains numeric characters. | |
bool | isAlphabetic (std::string_view str) noexcept |
Checks whether a string only contains alphabetic characters. | |
bool | isAlnum (std::string_view str) noexcept |
Checks whether a string only contains alpha-numeric characters. | |
bool | isIP (std::string_view str) noexcept |
Checks whether a string contains only IPv4/IPv6 chars. | |
bool | startsWith (std::string_view str, const char flag) noexcept |
Checks if a string starts with the given sequence. | |
bool | startsWith (std::string_view str, std::string_view flag) noexcept |
Checks if a string starts with the given sequence. | |
bool | endsWith (std::string_view str, const char flag) noexcept |
Checks if a string ends with the given sequence. | |
bool | endsWith (std::string_view str, std::string_view flag) noexcept |
Checks if a string ends with the given sequence. | |
bool | contains (std::string_view str, std::string_view flag) noexcept |
Checks if a string contains the given sequence. | |
Utilities for the strings
|
inlinenoexcept |
Checks if a string contains the given sequence.
str | The target string |
flag | The sequence to search for |
|
inlinenoexcept |
Counts the occurrences of the given sequence in the given string.
str | The target string |
flag | The character to find |
|
noexcept |
Counts the occurrences of the given sequence in the given string.
str | The target string |
flag | The string to find |
|
inlinenoexcept |
Checks if a string ends with the given sequence.
str | The target string |
flag | The character to search for |
|
inlinenoexcept |
Checks if a string ends with the given sequence.
Passing an empty flag ends in a false positive
str | The target string |
flag | The sequence to search for |
|
inlinenoexcept |
Checks whether a string only contains alpha-numeric characters.
str | The target string |
|
inlinenoexcept |
Checks whether a string only contains alphabetic characters.
str | The target string |
|
inlinenoexcept |
Checks whether a string contains only IPv4/IPv6 chars.
This method doesn't check if the IP could be actually valid, since this is beyond its purpose
str | The target string |
|
noexcept |
Checks whether a string only contains numeric characters.
str | The target string |
|
inlinenoexcept |
Checks whether a string only contains numeric characters.
str | The target string |
|
noexcept |
Strips the given characters from the left side of a string.
str | The target string |
chars | The characters to strip away |
|
noexcept |
Strips the given character from the left side of a string.
str | The target string |
chr | The character to strip away |
|
noexcept |
Strips everything from a string starting from the left side untill the delimiter is found (a.k.a. cut)
str | The target string |
delim | The delimiter |
inclusive | Whether to also strip the delimiter or not |
consecutives | Whether to strip all the occurrences of the delimiter if they're consecutive, only applies if inclusive |
|
noexcept |
Replaces all the occurrences of a sequence with another.
str | The target string |
target | The sequence which will be replaced |
replace | The sequence to be used to replace the target |
|
noexcept |
Strips the given characters from the right side of a string.
str | The target string |
chars | The characters to strip away |
|
noexcept |
Strips the given character from the right side of a string.
str | The target string |
chr | The character to strip away |
|
noexcept |
Splits a string using a separator.
list | Will hold the splitted content |
target_str | The target string |
separator | The character to use as separator |
|
noexcept |
Splits a string using a separator.
list | Will hold the splitted content |
target_str | The target string |
separator | The sequence to use as separator |
|
noexcept |
Splits a string and strips all the splitted items.
list | Will hold the splitted content |
target_str | The target string |
separator | The sequence to use as separator |
strip | The characters to strip away |
|
noexcept |
Splits a string and strips all the splitted items.
list | Will hold the splitted content |
target_str | The target string |
separator | The sequence to use as separator |
strip | The characters to strip away |
|
inlinenoexcept |
Checks if a string starts with the given sequence.
str | The target string |
flag | The character to search for |
|
inlinenoexcept |
Checks if a string starts with the given sequence.
Passing an empty flag ends in a false positive
str | The target string |
flag | The sequence to search for |
|
noexcept |
Strips the given characters from both the left and the right side of a string.
str | The target string |
chars | The characters to strip away |
|
noexcept |
Strips the given character from both the left and the right side of a string.
str | The target string |
chr | The character to strip away |
|
noexcept |
Converts a string to lower case.
str | The target string |
|
noexcept |
Converts a string to upper case.
str | The target string |