1. ホーム
  2. c++

[解決済み】wstringをstringに変換する方法は?

2022-04-04 07:44:34

質問

問題は、wstring を string に変換する方法です。

次のような例があります。

#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;
}

コメントアウトされた行を含む出力は:

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

が、無ければただの:

std::wstring =    Hello

この例は何か間違っているのでしょうか?上記のような変換は可能でしょうか?

EDIT

新しい例(いくつかの回答を考慮して)は、次のとおりです。

#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;
}

出力は :

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

そのため、stringstreamはwstringを文字列に変換するために使用することはできません。

どのように解決するのですか?

他の提案に基づいた解決策を紹介します。

#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;
  }
}

これは通常、Linuxではうまくいきますが、Windowsでは問題が生じます。