码迷,mamicode.com
首页 > 系统相关 > 详细

Linux C判断字符串是否为数字

时间:2015-03-07 18:31:31      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

Title:Linux C判断字符串是否为数字  --2013-10-14 15:54

#include <ctype.h>
#include <string.h>
    int IsInt(char* str)
    {
        int len;
        len = strlen(str);
        int i=0;
        for(i;i<len;i++)
        {
            if(!(isdigit(str[i])))
                return 0;
        }
        return 1;
    }

  

Linux C判断字符串是否为数字

标签:

原文地址:http://www.cnblogs.com/TeaIng-Index/p/4320694.html

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