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!

link|improve this question

67% accept rate
3  
Basic reading: The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!). It helps if you can show examples that fail (both the text strings and their binary representations). For instance, the sudden appearance of à in strings often points to the interpretation of an UTF-8 string as an ISO-8859 string. – MSalters Jun 30 '11 at 12:19
Great article, I actually learned something new and I thought I knew everything about unicode! – AJG85 Jun 30 '11 at 14:25
Any other suggestions.. – dearvivekkumar Jul 1 '11 at 6:04
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.