Click here to Skip to main content
15,910,981 members

Comments by Mital D Vora (Top 2 by date)

Mital D Vora 30-Mar-11 9:22am View    
Deleted
Yeah I am well aware about the topic. I was sharing my experience about handling unicode in our code. Many times we tend to code only for ASCII but when it comes to actual deployment we may find use cases where unicode is present. At that time we may have to revisit all of our code for unicode compatibility. As personal experience I would suggest one should always keep in mind that his code should be unicode compliant weather or not he, at present using any unicode data. The overhead of taking care about unicode initially while coding would be much lesser compared to revisiting the entire code again. (Sadly, I have to do for one of my project. )
Mital D Vora 29-Mar-11 22:34pm View    
Deleted
This works fine for all ASCII strings but when you are dealing with unicode data this doesn't work fine.. few days back I was dealing with similar problem.. checkout http://fundoo-tech.blogspot.com/2011/02/c-string-handling-and-unicode-mess.html