Home
last modified time | relevance | path

Searched refs:needTrim (Results 1 - 2 of 2) sorted by relevance

/commonlibrary/c_utils/base/src/
H A Dstring_ex.cpp95 void SplitStr(const string& str, const string& sep, vector<string>& strs, bool canEmpty, bool needTrim) in SplitStr() argument
98 string strTmp = needTrim ? TrimStr(str) : str; in SplitStr()
103 strPart = needTrim ? TrimStr(strTmp) : strTmp; in SplitStr()
109 strPart = needTrim ? TrimStr(strTmp.substr(0, pos)) : strTmp.substr(0, pos); in SplitStr()
/commonlibrary/c_utils/base/include/
H A Dstring_ex.h97 * @param needTrim Specifies whether to remove whitespace from the output string.
101 bool canEmpty = false, bool needTrim = true);

Completed in 1 milliseconds