AfxExtractSubString2 HEX CString to BYTE array MFC Unicode CString을 BYTE 배열로 리턴하는 함수 예제 HEX string은 "0xab 0x01 0x02 0x03 0xfa 0xFF"와 같이 Space로 구분되어 있을 경우 /// 유니코드 CString /// strData = _T("0xab 0x01 0x02 0x03 0xfa 0xFF"); /// rt[] = { 253, 1, 2, 3, 250, 255 }; byte* etUsbTestDlg::StringToHex(CString strData) { CString strValue; int i = 0; // substring index to extract TCHAR chSep = ' '; byte rt[1024] = { 0, }; while (AfxExtractSubString(strV.. 2023. 5. 8. std::string Split http://stackoverflow.com/questions/5167625/splitting-a-c-stdstring-using-tokens-e-g?answertab=votes#tab-top std::string을 split 하는 방법을 찾다가 이 방법이 가장 좋은 것 같아 글을 남긴다. 추후에도 많이 사용할 것 같다. #include #include #include using namespace std; int main() { vector strings; istringstream f("denmark;sweden;india;us"); string s; while (getline(f, s, ';')) { cout 2016. 4. 26. 이전 1 다음