I have a problem with a string in C++ which has several words in Spanish. This means that I have a lot of words with accents and tildes. I want to replace them for their not
Try using std::wstring instead of std::string. UTF-16 should work (as opposed to ASCII).