首页 > 代码库 > 脑残集(1)把一个字符串内的正整数相加
脑残集(1)把一个字符串内的正整数相加
1 #include "string" 2 typedef std::basic_string<TCHAR> tstring; 3 int _tmain(int argc, _TCHAR* argv[]) 4 { 5 6 tstring str= _T("没2有60最脑40残只有100更脑残!5"); 7 const tstring numSet = _T("0123456789"); 8 tstring::size_type pos = str.find_first_of(numSet); 9 int iFinal(0);10 while (str.npos != pos){11 tstring::size_type pos2 = str.find_first_not_of(numSet, pos);12 tstring strNum = str.substr(pos, pos2 - pos);13 int iNum = _ttoi(strNum.c_str());14 iFinal += iNum;15 pos = str.find_first_of(numSet, pos2);16 }17 18 return 0;19 }
脑残集(1)把一个字符串内的正整数相加
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。