Skip to content

Instantly share code, notes, and snippets.

@Glamhoth
Last active June 6, 2019 08:50
Show Gist options
  • Save Glamhoth/dacab3b1498f804558981b834451e587 to your computer and use it in GitHub Desktop.
Save Glamhoth/dacab3b1498f804558981b834451e587 to your computer and use it in GitHub Desktop.
QString test("łabądź");
std::transform(test.begin(), test.end(), test.begin(), [&](QChar c)
{
if(c == QChar(L'ł'))
return QChar('l');
// ...
else
return c;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment