美文网首页
判断字符串是否是时间格式(00:00:00)

判断字符串是否是时间格式(00:00:00)

作者: 863cda997e42 | 来源:发表于2018-01-25 14:47 被阅读6次
    bool IsHourTimeFormat(const char* time)
    {
    
        if (NULL == time)
        {
            return false;
        }
        int tlen = strlen(time);
    
        if (8 == tlen)
        {
            for (int i=0; i<tlen; i++)
            {
                if (!isdigit(time[i]))
                {
                    if ((i!=2 && i!=5) || time[i]!=':')
                    {
                        return false;
                    }
                }
            }
        }
        else
        {
            return false;
        }
        return true;
    }
    

    相关文章

      网友评论

          本文标题:判断字符串是否是时间格式(00:00:00)

          本文链接:https://www.haomeiwen.com/subject/eeyvaxtx.html