Lines Matching refs:str

42  * @param str Indicates the base string.
45 std::string UpperStr(const std::string& str);
51 * @param str Indicates the base string.
54 std::string LowerStr(const std::string& str);
60 * @param str Indicates the substring to be replaced.
65 std::string ReplaceStr(const std::string& str, const std::string& src, const std::string& dst);
71 * @param str Indicates the base string.
75 std::string TrimStr(const std::string& str, const char cTrim = ' ');
92 * @param str Indicates the base string.
100 void SplitStr(const std::string& str, const std::string& sep, std::vector<std::string>& strs,
121 * @param str Indicates the string to be converted.
126 bool StrToInt(const std::string& str, int& value);
132 * @param str Indicates the base string.
136 bool IsNumericStr(const std::string& str);
142 * @param str Indicates the base string.
146 bool IsAlphaStr(const std::string& str);
152 * @param str Indicates the base string.
156 bool IsUpperStr(const std::string& str);
162 * @param str Indicates the base string.
166 bool IsLowerStr(const std::string& str);
172 * @param str Indicates the base string.
177 bool IsSubStr(const std::string& str, const std::string& sub);
184 * @param str Indicates the base string.
191 std::string::size_type GetFirstSubStrBetween(const std::string& str, const std::string& left,
199 * @param str Indicates the base string.
204 void GetSubStrBetween(const std::string& str, const std::string& left,
221 * @param str Indicates the base string.
225 bool IsAsciiString(const std::string& str);
241 * @param str Indicates a `std::string` object.
244 std::u16string Str8ToStr16(const std::string& str);