Searched refs:oldstr (Results 1 – 2 of 2) sorted by relevance
91 std::string StringHelper::Replace(const std::string &value, const std::string &oldstr, const std::s… in Replace() argument95 while ((pos = result.find(oldstr, pos)) != std::string::npos) { in Replace()96 result.replace(pos, oldstr.size(), newstr); in Replace()
32 …static std::string Replace(const std::string &value, const std::string &oldstr, const std::string …