码迷,mamicode.com
首页 > 编程语言 > 详细

c++判断一个字符串是否是数字

时间:2016-03-31 01:39:46      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:

bool isNum(const string& str)
{
    bool bRet = false;
    bool point = false;
    if(str.length() == 0)
    {
        return bRet;
    }
    
    if (!isdigit(str[0]) && str[0] != + && str[0] != - )
    {
        return bRet;
    }

    if (str[1] == . && (str[0] == + || str[0] == -))
    {
        return bRet;
    }

    for ( int i = 1; i < str.length(); i++ )
    {
        if (!isdigit(str[i]))
        {
            if (str[i] == . && !point)
            {
                point = true;
            } else
            {
                return bRet;
            }

        }
    }

    return true;
}

 

c++判断一个字符串是否是数字

标签:

原文地址:http://www.cnblogs.com/kaishan1990/p/5339488.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!