摘要: 查找字符串a是否包含子串b, 不是用strA.find(strB) > 0而是strA.find(strB) != string:npos string::size_type pos = strA.find(strB); if(pos != string::npos){} 阅读全文
posted @ 2012-12-02 18:08 web8 阅读(90119) 评论(3) 推荐(6) 编辑