pingkai1217 2016-03-04 11:28 采纳率: 41.7%
浏览 2916
已采纳

C++ 字符串 转 二维数组

 CString  aa = "11<225>22<225>33<225>44<000>aa<225>bb<225>cc<225>dd<000>ee<255>ff<255>hh<000>"想转为二维数组   求代码 学习

想转为二维数组 求代码 学习

  • 写回答

2条回答

  • threenewbee 2016-03-04 16:31
    关注
     // app1.cpp : Defines the entry point for the console application.
    //
    
    #include "stdafx.h"
    #include "app1.h"
    
    #ifdef _DEBUG
    #define new DEBUG_NEW
    #undef THIS_FILE
    static char THIS_FILE[] = __FILE__;
    #endif
    
    /////////////////////////////////////////////////////////////////////////////
    // The one and only application object
    
    CWinApp theApp;
    
    using namespace std;
    
    int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
    {
        int nRetCode = 0;
    
        // initialize MFC and print and error on failure
        if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
        {
            // TODO: change error code to suit your needs
            cerr << _T("Fatal Error: MFC initialization failed") << endl;
            nRetCode = 1;
        }
        else
        {
            // TODO: code your application's behavior here.
            //CString strHello;
            //strHello.LoadString(IDS_HELLO);
            //cout << (LPCTSTR)strHello << endl;
            CString aa = "11<225>22<225>33<225>44<000>aa<225>bb<225>cc<225>dd<000>ee<255>ff<255>hh<000>";
    
            char * buffer = new char[aa.GetLength() + 1];
            strcpy(buffer, (LPCTSTR)aa);
            char ** arr = new char*[aa.GetLength()];
            int n = 1;
            arr[0] = &buffer[0];
            for (int i = 0; i < aa.GetLength(); i++)
            {
                if (buffer[i] == '<' || buffer[i] == '>')
                {
                    arr[n] = &buffer[i + 1];
                    buffer[i] = '\0';
                    n++;
                }
            }
            for (i = 0; i < n - 1; i++)
            {
                printf("%s\n", arr[i]);
            }
        }
    
        return nRetCode;
    }
    
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 交替优化波束形成和ris反射角使保密速率最大化
  • ¥15 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程