沉溺C++
记忆经典
C++博客
首页
新随笔
联系
聚合
管理
3 Posts :: 4 Stories :: 2 Comments :: 0 Trackbacks
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(1)
给我留言
查看公开留言
查看私人留言
随笔档案
2009年2月 (1)
2008年9月 (2)
文章档案
2009年3月 (1)
2009年2月 (3)
搜索
最新评论
1. re: NO_Recursive Travel
那你说下非递归的思想。。。
老大你在不
@alpc16
--俊杰
2. re: NO_Recursive Travel
看代码好累。。。
--alpc16
阅读排行榜
1. NO_Recursive Travel(246)
2. STL算法一览(转)(221)
3. review yoseph & stein(190)
评论排行榜
1. NO_Recursive Travel(2)
2. STL算法一览(转)(0)
3. review yoseph & stein(0)
c++分割字符串函数
void
decodeCString( CString source, CStringArray
&
dest , CString division)
{
dest.RemoveAll();
while
(
true
)
{
int
nIndex
=
source.Find(division,
0
);
if
(nIndex
==
-
1
)
{
source
=
source;
dest.Add(source);
}
else
{
dest.Add(source.Left(nIndex));
source
=
source.Right(source.GetLength()
-
nIndex
-
1
);
}
if
(nIndex
==
-
1
)
break
;
}
}
posted on 2009-02-19 14:25
俊杰
阅读(394)
评论(0)
编辑
收藏
引用
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理
Powered by:
C++博客
Copyright © 俊杰