It's very difficult for me to explain what I am doing. Actually It's related with bit InDesign and Juce library.
Actually I am making a plugin for InDesign. I have a string as WideString(InDesign UTF String) and need to convert this into Juce::String.
For this I've created a function
void SCWordIteratorInDesign::WideStringToJuceString(const WideString &inWideString, juce::String &outJuceString)
{
std::string tmp;
StringUtils::ConvertWideStringToUTF8(inWideString, tmp);
size_t len = tmp.length();
outJuceString = "";
outJuceString = juce::String::fromUTF8(tmp.c_str(), len * sizeof(char));
}
This is working well in Window platform for accented characters, But on Mac I for accented characters I am getting some wired characters.
I just wants suggestions what is wrong with this approach. Moreover I can't go for any library.
Thanks!
Ãin strings often points to the interpretation of an UTF-8 string as an ISO-8859 string. – MSalters Jun 30 '11 at 12:19