I'm trying to write wstrings (in Russian) in Linux, in C++ code in the following code:
ofstream outWFile;
outWFile.open("input.tab");
outWFile<< WStringToString(w->get_form());
outWFile<<"\t";
outWFile<<WStringToString(w->get_tag());
std::string WStringToString(const std::wstring& s)
{
std::string temp(s.length(),' ');
std::copy(s.begin(), s.end(), temp.begin());
return temp;
}
input.tab contents are invalid
I have tried to do what is proposed in stackoverflow including Unable to write a std::wstring into wofstream However I didn't help. Thank you in advance
Your conversion function is at fault: it will end up messing up all characters that have a code point of 128/256 or larger (depending on your locale).
Use
wcstombs
instead (make sure to use a UTF-8 locale).