3,973 questions
Try to remove this character: L'”'
.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have the following code:
std::wstring data{ L"”something”" };
data.erase(std::remove(data.begin(), data.end(), '”'), data.end());
std::wcout << data.c_str() << std::endl;
Why the code doesn't remove that char ? See output:
Not so important, didn't dispaly on the output at all. The project is Use Unicode Character Set.
Try to remove this character: L'”'
.