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;
}
网友评论