Answer the question
In order to leave comments, you need to log in
What problems arise when working with Unicode, and what solutions do they have in C++?
I'm trying to comprehensively review for myself the scope of working with text in general and adjusted for Unicode and C ++.
Cross-platform also want to take into account.
Question 1 : what are the known problems (if possible a complete list :) ) when working with text in general, for which a special solution is needed in Unicode?
Question 2 : what are the default tools for working with all this in C ++ and how far do they fall short / fall short of the ideal?
Question 3 : how much additional libraries might be needed?
At the moment, I have set myself the following tasks:
Answer the question
In order to leave comments, you need to log in
Look here https://github.com/sitev/cjCore/blob/master/src/ob... my String class. This is a UTF-32 string. There are pros and cons. We can join forces, write our own, more correct String!
UTF8-CPP - used when I had to write without using cross-platform frameworks. Solve the main problems.
The main thing is to convert all incoming strings to utf-8 and don't forget to convert them to the output encoding, if necessary. And all processing is only in utf-8, ready-made solutions for this are more than enough.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question