Click here to Skip to main content
15,888,113 members
Articles / Programming Languages / C++
Alternative
Tip/Trick

ASCII strings to Unicode in C++

Rate me:
Please Sign up or sign in to vote.
4.89/5 (2 votes)
28 Mar 2011CPOL 27K   4   5
std::string source = "Hello World";std::wstring result( source.begin(), source.end() );One coding line less !
std::string source = "Hello World";
std::wstring result( source.begin(), source.end() );

One coding line less !

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer
France France
I'm an independent Software Developer living in the Alpes Maritimes (aka French Riviera).

Even if in the past I have worked regularily with Fortran, Pascal, Basic (not necessarily Visual), and much more esoteric languages (who knows Prolog, Lotus 123 macros ?), even if I still work from time to time with C#, Java or some "interpreted languages", I'm more specialized in C++.
I work on MFC since the very first version, I enjoy working on Visual Studio 2010, its C++0x features, STL, MFC, boost, WTL ...

Comments and Discussions

 
GeneralYeah I am well aware about the topic. I was sharing my exper... Pin
Mital D Vora30-Mar-11 3:22
Mital D Vora30-Mar-11 3:22 
GeneralRe: Well, you said: "but when you are dealing with unicode data ... Pin
Nemanja Trifunovic30-Mar-11 5:07
Nemanja Trifunovic30-Mar-11 5:07 
GeneralThis works fine for all ASCII strings but when you are deali... Pin
Mital D Vora29-Mar-11 16:34
Mital D Vora29-Mar-11 16:34 
GeneralRe: Mital, please check the title of the tip: "ASCII strings to ... Pin
Nemanja Trifunovic30-Mar-11 2:42
Nemanja Trifunovic30-Mar-11 2:42 
GeneralYep, very good :) Pin
Nemanja Trifunovic29-Mar-11 2:58
Nemanja Trifunovic29-Mar-11 2:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.