c++ 字符串工具类
摘要:
#include #include "util.h"namespace strtool{std::string trim(const std::string& str) { std::string::size_type pos = str.find_first_not_of(' '); ... 阅读全文
posted @ 2015-04-29 17:02 雨渐渐 阅读(835) 评论(0) 推荐(0) 编辑
posted @ 2015-04-29 17:02 雨渐渐 阅读(835) 评论(0) 推荐(0) 编辑