10 while ((pos = subject.find(search, pos)) !=
std::string::npos)
12 subject.replace(pos, search.length(), replace);
13 pos += replace.length();
__forceinline std::string ReplaceString(std::string subject, const std::string &search, const std::string &replace)