https://img-blog.csdnimg.cn/32db9ce43ef64316a2e37a31f4cee033.gif
编程小鱼酱yu612.com,点击前往

string中获取所有数字

例如 "10km"

获取   "km"
    string strLevel = "10km";
    string::iterator iter=strLevel.begin();
    string strUnit; //"km"
    for(iter;iter!=strLevel.end(); ++iter)
    {
        if(!isdigit(*iter)) //不是数字
        {
            strUnit = strUnit + (*iter);
        }
    }
posted @ 2017-09-26 09:09  鱼酱  阅读(796)  评论(0编辑  收藏  举报

https://img-blog.csdnimg.cn/32db9ce43ef64316a2e37a31f4cee033.gif
编程小鱼酱yu612.com,点击前往