Author:mar_kq
Posted: Wed Jan 25, 2017 4:33 pm (GMT+1)
I have an Issue connected to this topic.
I am able to get a project name from Teamwork using the mentioned function:
However the returned string is UTF-8 Coded from UniString, and the result is that special characters (German Umlaut f.e.) are returned like so:
What is the recommended way to decode this?
Posted: Wed Jan 25, 2017 4:33 pm (GMT+1)
I have an Issue connected to this topic.
I am able to get a project name from Teamwork using the mentioned function:
Code: |
projectInfo.location_team->GetLastLocalName (&projectName); |
However the returned string is UTF-8 Coded from UniString, and the result is that special characters (German Umlaut f.e.) are returned like so:
Code: |
"%20" = " "; "%C3%A4" = "ä"; "%C3%AB" = "ö"; "%C3%A6" = "ü"; |
What is the recommended way to decode this?