I'm looking for a method, or a code snippet for converting std::string to LPCWSTR

link|improve this question

feedback

6 Answers

up vote 23 down vote accepted

Thanks for the link to the MSDN article. This is exactly what I was looking for.

std::wstring s2ws(const std::string& s)
{
    int len;
    int slength = (int)s.length() + 1;
    len = MultiByteToWideChar(CP_ACP, 0, s.c_str(), slength, 0, 0); 
    wchar_t* buf = new wchar_t[len];
    MultiByteToWideChar(CP_ACP, 0, s.c_str(), slength, buf, len);
    std::wstring r(buf);
    delete[] buf;
    return r;
}

std::wstring stemp = s2ws(myString);
LPCWSTR result = stemp.c_str();
link|improve this answer
2  
(Found this question browsing randomly; it's been a long time since I did C++.) So the standard library doesn't have std::string -> std::wstring conversion? That seems weird; is there a good reason? – Domenic Jul 29 '09 at 8:41
1  
If you use std::vector<wchar_t> to create storage for buf, then if anything throws an exception your temporary buffer will be freed. – Jason Harrison Jan 6 '10 at 19:01
1  
reason #233 as to why c++ annoys the hell outta me..10 lines of code for a simple string conversion =/ – b1naryatr0phy May 22 at 21:29
feedback

A simple google search yields:

MSDN: Convert std::string to LPCWSTR (best way in c++)

link|improve this answer
Bad link. The latest one is social.msdn.microsoft.com/Forums/en/Vsexpressvc/thread/… – dwj Nov 16 '09 at 19:52
feedback

@Chris Fournier:

delete pszWideCharStr; // Free the buffer

Why do you regard freeing the buffer as optional (it should free the buffer even if the second call to MultiByteToWideChar fails), and why do you corrupt your free store (you should use delete[] for arrays)?

link|improve this answer
feedback

If you are in an ATL/MFC environment, You can use the ATL conversion macro:

#include <atlbase.h>
#include <atlconv.h>

. . .

string myStr("My string");
CA2W unicodeStr(myStr);

You can then use unicodeStr as an LPCWSTR. The memory for the unicode string is created on the stack and released then the destructor for unicodeStr executes.

link|improve this answer
feedback

Instead of using a std::string, you could use a std::wstring.

EDIT: Sorry this is not more explanatory, but I have to run.

Use std::wstring::c_str()

link|improve this answer
feedback

The solution is actually a lot easier than any of the other suggestions:

std::wstring(s.begin(), s.end()).c_str()

Best of all, it's platform independent. h2h :)

link|improve this answer
1  
Sorry Benny but that doesn't work for me, Toran's own solution does seem to work fine though (but..blegh!). – Iain Collins Nov 17 '10 at 15:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.