This commit is contained in:
2022-01-12 14:16:14 +08:00
parent 78a3e890d2
commit b064cb7f5c
4 changed files with 52 additions and 1 deletions

View File

@@ -27,5 +27,11 @@ namespace str_util {
* @return Result.
*/
std::list<std::string> str_split(std::string input, std::string pattern, size_t max = -1);
/**
* @brief Convert data to a lowercase hexadecimal string
* @param input Input data
* @return Output
*/
std::string str_hex(std::string input);
}
#endif