[string] C ++ / CLI System :: String ^에서 std :: string으로 변환

누군가 변환 할 간단한 코드를 게시 해 주시겠습니까?

System::String^

에,

C ++ std::string

즉, 값을 할당하고 싶습니다.

String^ originalString;

에,

std::string newString;



답변

확인 System::Runtime::InteropServices::Marshal::StringToCoTaskMemUni()하고 그 친구들.

지금 코드를 게시 할 수 없습니다. 게시하기 전에 컴파일을 확인하기 위해이 컴퓨터에 VS가 없습니다.


답변

자신의 롤하지 마십시오, 사용 Microsoft에서 제공하는 편리 (및 확장) 래퍼.

예를 들면 :

#include <msclr\marshal_cppstd.h>

System::String^ managed = "test";
std::string unmanaged = msclr::interop::marshal_as<std::string>(managed);


답변

다음과 같이 쉽게 할 수 있습니다.

#include <msclr/marshal_cppstd.h>

System::String^ xyz="Hi boys";

std::string converted_xyz=msclr::interop::marshal_as< std::string >( xyz);


답변

이것은 나를 위해 일했습니다.

#include <stdlib.h>
#include <string.h>
#include <msclr\marshal_cppstd.h>
//..
using namespace msclr::interop;
//..
System::String^ clrString = (TextoDeBoton);
std::string stdString = marshal_as<std::string>(clrString); //String^ to std
//System::String^ myString = marshal_as<System::String^>(MyBasicStirng); //std to String^
prueba.CopyInfo(stdString); //MyMethod
//..
//Where: String^ = TextoDeBoton;
//and stdString is a "normal" string;


답변

여기가 C ++ / CLI 프로젝트에 대해 몇 년 전에 쓴 일부 변환 루틴 그들은이다 해야 여전히 작동합니다.

void StringToStlWString ( System::String const^ s, std::wstring& os)
    {
        String^ string = const_cast<String^>(s);
        const wchar_t* chars = reinterpret_cast<const wchar_t*>((Marshal::StringToHGlobalUni(string)).ToPointer());
        os = chars;
        Marshal::FreeHGlobal(IntPtr((void*)chars));

    }
    System::String^ StlWStringToString (std::wstring const& os) {
        String^ str = gcnew String(os.c_str());
        //String^ str = gcnew String("");
        return str;
    }

    System::String^ WPtrToString(wchar_t const* pData, int length) {
        if (length == 0) {
            //use null termination
            length = wcslen(pData);
            if (length == 0) {
                System::String^ ret = "";
                return ret;
            }
        }

        System::IntPtr bfr = System::IntPtr(const_cast<wchar_t*>(pData));
        System::String^ ret = System::Runtime::InteropServices::Marshal::PtrToStringUni(bfr, length);
        return ret;
    }

    void Utf8ToStlWString(char const* pUtfString, std::wstring& stlString) {
        //wchar_t* pString;
        MAKE_WIDEPTR_FROMUTF8(pString, pUtfString);
        stlString = pString;
    }

    void Utf8ToStlWStringN(char const* pUtfString, std::wstring& stlString, ULONG length) {
        //wchar_t* pString;
        MAKE_WIDEPTR_FROMUTF8N(pString, pUtfString, length);
        stlString = pString;
    }


답변

Windows 양식 목록 상자 ToString 값을 표준 문자열로 변환하여 fstream과 함께 사용하여 txt 파일로 출력 할 수 있도록 몇 시간을 보냈습니다. 내 Visual Studio에는 내가 찾은 여러 답변이 사용한다고 말한 마샬 헤더 파일이 함께 제공되지 않았습니다. 많은 시행 착오 끝에 마침내 System :: Runtime :: InteropServices를 사용하는 문제에 대한 해결책을 찾았습니다.

void MarshalString ( String ^ s, string& os ) {
   using namespace Runtime::InteropServices;
   const char* chars =
      (const char*)(Marshal::StringToHGlobalAnsi(s)).ToPointer();
   os = chars;
   Marshal::FreeHGlobal(IntPtr((void*)chars));
}

//this is the code to use the function:
scheduleBox->SetSelected(0,true);
string a = "test";
String ^ c = gcnew String(scheduleBox->SelectedItem->ToString());
MarshalString(c, a);
filestream << a;

다음은 예제가있는 MSDN 페이지입니다.
http://msdn.microsoft.com/en-us/library/1b4az623(v=vs.80).aspx

나는 그것이 매우 간단한 해결책이라는 것을 알고 있지만 마침내 작동하는 것을 찾기 위해 문제를 해결하고 여러 포럼을 방문하는 데 몇 시간이 걸렸습니다.


답변

String ^에서 std :: string을 얻는 쉬운 방법은 sprintf ()를 사용하는 것입니다.

char cStr[50] = { 0 };
String^ clrString = "Hello";
if (clrString->Length < sizeof(cStr))
  sprintf(cStr, "%s", clrString);
std::string stlString(cStr);

Marshal 함수를 호출 할 필요가 없습니다!

업데이트 Eric 덕분에 버퍼 오버플로를 방지하기 위해 입력 문자열의 크기를 확인하도록 샘플 코드를 수정했습니다.