#include
#include
#include
#include
1 - ReadFile UTF-8
std::wstring UTF8Oku(const char* Dosya)
{
std::wifstream wif(Dosya);
wif.imbue(std::locale(std::locale::empty(), new std::codecvt_utf8
std::wstringstream wss;
wss << wif.rdbuf();
return wss.str();
}
Kullanımı --> std::wstring Okunan = UTF8Oku("test.txt");
2 - Split / Explode / Separate
char * Parça = strtok(Yazı, ",");
while (Parça != NULL)
{
printf ("%s\n",Parça );
Parça = strtok (NULL, ",");
}