A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.
It's ok now, I used:
size_t pos;
while ((pos = temp.find(L"ș")) != std::string::npos)
{
temp.replace(pos, 2, L"s");
}
I try to see if this could be accomplished with std::replace.