Home
last modified time | relevance | path

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

/commonlibrary/c_utils/base/src/
H A Dstring_ex.cpp52 string strTmp = str; in ReplaceStr() local
53 while ((pos = strTmp.find(src, pos)) != string::npos) { in ReplaceStr()
54 strTmp.replace(pos, src.length(), dst); in ReplaceStr()
58 return strTmp; in ReplaceStr()
67 string strTmp = str; in TrimStr() local
68 std::string::size_type firstBound = strTmp.find_first_not_of(cTrim); in TrimStr()
70 strTmp.erase(0, firstBound); in TrimStr()
73 std::string::size_type lastBound = strTmp.find_last_not_of(cTrim); in TrimStr()
74 if (lastBound != std::string::npos && lastBound != strTmp.size() - 1) { in TrimStr()
75 strTmp in TrimStr()
98 string strTmp = needTrim ? TrimStr(str) : str; SplitStr() local
225 string strTmp = str; GetSubStrBetween() local
[all...]

Completed in 1 milliseconds