程序员人生 网站导航

isxdigit字符串测试函数应用实例

栏目:php教程时间:2016-06-01 17:59:55
原型:int isxdigit(int c);
头文件:ctype.h
功能:检查参数c是不是为16进制数字,只要c为以下其中1个情况则返回TRUE。16进制数字:0123456789ABCDEF。
返回值:若参数c为16进制数字,则返回TRUE,否则返回NULL(0)。
附加说明: 此为宏定义,非真正函数。

函数摹拟源码:

int isxdigit(int c) { return ('0' <= c && c <= '9') || ('A' <= c && c <= 'F') || ('a' <= c && c <= 'f'); }

利用实例:

#include <stdio.h> #include <ctype.h> main() { char str[]="a3 4%8}9 [e*&^%?"; int i = 0; for(i=0;str[i]!=0;i++) { if(isxdigit(str[i])) { printf("%c 是106进制数\n",str[i]); } else { printf("%c 不是106进制数\n",str[i]); } } }

运行结果:


------分隔线----------------------------
------分隔线----------------------------

最新技术推荐