Bug fix & New function

This commit is contained in:
2024-04-17 14:40:45 +08:00
parent ebdb1bd55c
commit 72f6f0ab66
3 changed files with 19 additions and 2 deletions

View File

@@ -70,5 +70,12 @@ namespace str_util {
* @return Result
*/
std::string remove_quote(std::string input);
/**
* @brief Join a list of string with a pattern
* @param input Input list
* @param pattern Pattern
* @return Result
*/
std::string str_join(std::list<std::string> input, std::string pattern);
}
#endif