Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The question is how to convert wstring to string?

I have next example :

#include <string>
#include <iostream>

int main()
{
    std::wstring ws = L"Hello";
    std::string s( ws.begin(), ws.end() );

  //std::cout <<"std::string =     "<<s<<std::endl;
    std::wcout<<"std::wstring =    "<<ws<<std::endl;
    std::cout <<"std::string =     "<<s<<std::endl;
}

the output with commented out line is :

std::string =     Hello
std::wstring =    Hello
std::string =     Hello

but without is only :

std::wstring =    Hello

Is anything wrong in the example? Can I do the conversion like above?

EDIT

New example (taking into account some answers) is

#include <string>
#include <iostream>
#include <sstream>
#include <locale>

int main()
{
    setlocale(LC_CTYPE, "");

    const std::wstring ws = L"Hello";
    const std::string s( ws.begin(), ws.end() );

    std::cout<<"std::string =     "<<s<<std::endl;
    std::wcout<<"std::wstring =    "<<ws<<std::endl;

    std::stringstream ss;
    ss << ws.c_str();
    std::cout<<"std::stringstream =     "<<ss.str()<<std::endl;
}

The output is :

std::string =     Hello
std::wstring =    Hello
std::stringstream =     0x860283c

therefore the stringstream can not be used to convert wstring into string.

share|improve this question
3  
How can you ask this question without specifying also the encodings? – David Heffernan Jan 26 '11 at 12:15
4  
@tenfour: Why use std::wstring at all? stackoverflow.com/questions/1049947/… – dalle Jan 26 '11 at 13:14
3  
@dalle If you have data that is already encoded with UTF-16, whether or not UTF-16 is considered harmful is somewhat moot. And for what it's worth, I don't think any transformation form is harmful; what is harmful is people thinking they understand Unicode when in fact they don't. – David Heffernan Jan 26 '11 at 13:17
2  
Does it have to be a cross-platform solution? – ali_bahoo Jan 26 '11 at 13:18
1  
@sad_man If you can make one that is better. If not, I would prefer a linux solution. – BЈовић Jan 26 '11 at 13:22
show 14 more comments

7 Answers

up vote 5 down vote accepted

Here is a worked-out solution based on the other suggestions:

#include <string>
#include <iostream>
#include <clocale>
#include <locale>
#include <vector>

int main() {
  std::setlocale(LC_ALL, "");
  const std::wstring ws = L"ħëłlö";
  const std::locale locale("");
  typedef std::codecvt<wchar_t, char, std::mbstate_t> converter_type;
  const converter_type& converter = std::use_facet<converter_type>(locale);
  std::vector<char> to(ws.length() * converter.max_length());
  std::mbstate_t state;
  const wchar_t* from_next;
  char* to_next;
  const converter_type::result result = converter.out(state, ws.data(), ws.data() + ws.length(), from_next, &to[0], &to[0] + to.size(), to_next);
  if (result == converter_type::ok or result == converter_type::noconv) {
    const std::string s(&to[0], to_next);
    std::cout <<"std::string =     "<<s<<std::endl;
  }
}

This will usually work for Linux, but will create problems on Windows.

share|improve this answer
you have a memory leak if no exception is thrown ? you could use std::vector<char> instead of dynamic char array. – smerlin Jan 26 '11 at 14:11
@smerlin Good point, but besides that it seams to work fine. – BЈовић Jan 26 '11 at 14:25
@Phillip: which part of the code depend on the c-locale ? is the std::setlocale(LC_ALL, ""); really needed ? – smerlin Jan 26 '11 at 14:44
2  
using std::wcout.imbue(locale) should do the job aswell, and it has the benefit that it does not change any global state. – smerlin Jan 26 '11 at 15:22
3  
The std::wstring_convert from C++11 wraps up a lot of this noise. – Cubbi Sep 27 '11 at 19:34
show 2 more comments

Solution from: http://forums.devshed.com/c-programming-42/wstring-to-string-444006.html

std::wstring wide( L"Wide" ); 
string str( wide.begin(), wide.end() );

// Will print no problemo!
cout << str << endl;
share|improve this answer
Bizarrely, this works on Visual Studio 10. What is going on? This should cause a truncating assigment from wchar_t to char for all elements of the original string. – Pedro Lamarão Jan 4 at 17:41
@PedroLamarão: Why? since it's std::wstring which is template specializing of class 'string' for type 'wchar_t' in STL. – namar0x0309 Jan 16 at 21:08
The second line above creates an std::string (presumably) from a Range of Iterators, whose value type must then be char. But [wide.begin(), wide.end()) is a Range of Iterators whose value type is wchar_t, whose size is greater than the size of char. I see now that even your source states this is not portable. Perhaps it's Visual Studio specific. – Pedro Lamarão Feb 5 at 15:26
Just tried it here codepad.org/zUh426eh and it worked. I believe they use some flavor of GCC. The said string constructor that takes ranges must have a std template specialization implemented for wstring to string and back as it is cross compatible. – namar0x0309 Feb 11 at 3:14

Here's a way to combining string, wstring and mixed string constants to wstring. Use the wstringstream class.

#include <sstream>

std::string narrow = "narrow";
std::wstring wide = "wide";

std::wstringstream cls;
cls << " abc " << narrow.c_str() << L" def " << wide.c_str();
std::wstring total= cls.str();
share|improve this answer
3  
This is not a wstring to string conversion – poitroae Sep 6 '12 at 12:09
@Michael Can you please explain? What about this is incorrect? Your comment is not helpful without more details. – Nate Oct 3 '12 at 20:48
2  
@Nate - The question was to convert wstring to string. What is shown here is to convert wstring + string to wstring. – GuruM Oct 17 '12 at 7:25

I believe the official way is still to go thorugh codecvt facets (you need some sort of locale-aware translation), as in

resultCode = use_facet<codecvt<char, wchar_t, ConversionState> >(locale).
  in(stateVar, scratchbuffer, scratchbufferEnd, from, to, toLimit, curPtr);

or something like that, I don't have working code lying around. But I'm not sure how many people these days use that machinery and how many simply ask for pointers to memory and let ICU or some other library handle the gory details.

share|improve this answer
2  
+1 for the ICU, here's the link: site.icu-project.org – John Holecek Jan 26 '11 at 13:14

Instead of including locale and all that fancy stuff, if you know for FACT your string is convertible just do this:

string result;
for each(char x in wstrnamehere)
{
result += x;
}
share|improve this answer
2  
+1 because it's a simple solution that works for some scenarios (for a loose definition of "works", I might add). – Jaime Pardos Aug 14 '12 at 9:43

There are two issues with the code:

  1. The conversion in const std::string s( ws.begin(), ws.end() ); is not required to correctly map the wide characters to their narrow counterpart. Most likely, each wide character will just be typecast to char.
    The resolution to this problem is already given in the answer by kem and involves the narrow function of the locale's ctype facet.

  2. You are writing output to both std::cout and std::wcout in the same program. Both cout and wcout are associated with the same stream (stdout) and the results of using the same stream both as a byte-oriented stream (as cout does) and a wide-oriented stream (as wcout does) are not defined.
    The best option is to avoid mixing narrow and wide output to the same (underlying) stream. For stdout/cout/wcout, you can try switching the orientation of stdout when switching between wide and narrow output (or vice versa):

    #include <iostream>
    #include <stdio.h>
    #include <wchar.h>
    
    int main() {
        std::cout << "narrow" << std::endl;
        fwide(stdout, 1); // switch to wide
        std::wcout << L"wide" << std::endl;
        fwide(stdout, -1); // switch to narrow
        std::cout << "narrow" << std::endl;
        fwide(stdout, 1); // switch to wide
        std::wcout << L"wide" << std::endl;
    }
    
share|improve this answer
Yes, that fixes the problem with using cout and wcout. – BЈовић Jan 26 '11 at 16:21

You might as well just use the ctype facet's narrow method directly:

#include <clocale>
#include <locale>
#include <string>
#include <vector>

inline std::string narrow(std::wstring const& text)
{
    std::locale const loc("");
    wchar_t const* from = text.c_str();
    std::size_t const len = text.size();
    std::vector<char> buffer(len + 1);
    std::use_facet<std::ctype<wchar_t> >(loc).narrow(from, from + len, '_', &buffer[0]);
    return std::string(&buffer[0], &buffer[len]);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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