cstring字符串分割成按空格子字符串

在VS2010环境下,创建一个Unicode编码的控制台应用,通过使用cstring类型,该程序演示了如何根据空格将字符串分割成多个子字符串。首先将cstring的字符串转换为char数组,然后利用strtok函数进行分割,并存储到string数组中。
摘要由CSDN通过智能技术生成

环境vs2010
新建一个windows console apllication
将工程设为unicode编码 右击工程-》属性-》配置属性-》调试下面的字符集设置为用unicode编码。

此程序是将cstring类型的字符串,根据里面的空格,切割出若干个子字符串。

 

 

#include "stdafx.h"
#include <stdio.h>
#include <string>
#include <cstdlib>
#include <iostream>
#include <afx.h>
using namespace std;
string s[100];
int main()
{

 CString name(_T("我 是 janifer"));
 const char* split = " ";
 char* p;
 int n=name.GetLength();
 int len=WideCharToMultiByte(CP_ACP,0,name,name.GetLength(),NULL,0,NULL,NULL);
 char *pstr =new char[len+1] ;
 WideCharToMultiByte(CP_ACP,0,name,name.GetLength(),pstr,len,NULL,NULL);
 pstr[len] = '\0';
 p = strtok (pstr,split);
 int num =0;
 while(p!=NULL) {
  s[num]=p;
  
  num++;
  p = strtok(NULL,split);
 }
 for(int ii=0;ii<3;ii++)
 {
  cout<<s[ii]<<endl;
 }
 
 getchar();
 return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值