2014年10月8日

C++字符串分割

摘要: //字符串分割函数std::vector split(std::string str,std::string pattern){ std::string::size_type pos; std::vector result; str+=pattern;//扩展字符串以方便操作 ... 阅读全文

posted @ 2014-10-08 20:46 iackjee 阅读(155) 评论(0) 推荐(0) 编辑

【转载】C++针对ini配置文件读写大全

摘要: http://blog.csdn.net/hgy413/article/details/6666374#ini文件(Initialization file),这种类型的文件中通常存放的是一个程序的初始化信息。ini文件由若干个节(Section)组成,每个Section由若干键(Key)组成,每个K... 阅读全文

posted @ 2014-10-08 13:39 iackjee 阅读(1913) 评论(0) 推荐(0) 编辑

导航