博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux C函数练习 一 字符测试函数
阅读量:4961 次
发布时间:2019-06-12

本文共 4356 字,大约阅读时间需要 14 分钟。

字符测试函数 函数名 函数原型 头文件 函数功能 返回值 附加说明
  isalnum int isalnum(int c) #include <ctype.h> 检查参数c是否为英文字母或阿拉伯数字,在标准C中相当于使用isalpha ( c ) || isdigit ( c ) 做测试 若参数c为字母或者数字,则返回TRUE, 否则返回NULL 宏定义,非真正函数
  isalpha int isalpha(int c) #include <ctype.h> 检查参数从是否为英文字母,在标准C中相当于使用isupper ( c ) || islower ( c ) 做测试 若参数c为英文字母,则返回TRUE,否则返回NULL 宏定义,非真正函数
  isascii int isascii(int c) #include <ctype.h> 检查参数c是否为ASCII码字符,也就判断c的范围是否介于0到127之间 若参数c为ASCII码字符,则返回TRUE,否则返回NULL 宏定义,非真正函数
  isblank int isblank(int c) #include <ctype.h> 检查参数c是否为空格字符,也就是判断是否为空格(space)或是定位字符(tab)。空格的ASCII为32,定位字符(tab)的ASCII码则为9. 若参数c为空格字符,则返回TRUE,否则返回NULL 宏定义,非真正函数
  iscntrl int iscntrl(int c) #include <ctype.h> 检查参数c是否为ASCII控制码,也就是判断c的范围是否在0到31之间 若参数c为ASCII控制码,则返回TRUE,否则返回NULL 宏定义,非真正函数
  isdigit int isdigit(ing c) #include <ctype.h> 检查参数c是否为阿拉伯数字0到9 若参数c为阿拉伯数字,则返回TRUE,否则返回NULL 宏定义,非真正函数
  isgraph int isgraph(int c) #include <ctype.h> 检查参数c是否是可打印字符,若c所对应的ASCII码可打印,且非空格则返回TRUE 若参数c为可打印字符,则返回TRUE,否则返回NULL 宏定义,非真正函数
  islower int islower(int c) #include <ctype.h> 检查参数c是否为小写英文字母 若参数c为小写英文字母,则返回TRUE,否则返回NULL 宏定义,非真正函数
  isprint int isprint(int c) #include <ctype.h> 检查参数c是否为可打印字符,若c所对应的ASCII码可打印,其中包含空格字符,则返回TRUE 若参数c为可打印字符,则返回TRUE,否则返回NULL 宏定义,非真正函数
  isspace int isspace(int c) #include <ctype.h> 检查参数c是否为空格字符,也就是判断是否为空格('')、定位字符(’\t')、CR(‘\r')、换行('\n')、垂直定位字符('\v')或者翻页('\f')的情况 若参数c为空格字符,则返回TRUE,否则返回NULL 宏定义,非真正函数
  ispunct int ispunct(int c) #include <ctype.h> 检查参数c是否为标点符号或者特殊符号。返回TRUE也打标参数c为非空格、非数字、非英文字母 若参数c为标点符号或者特殊符号,则返回TRUE,否则返回NULL 宏定义,非真正函数
  isupper int isupper(ing c) #include <ctype.h> 检查参数c是否为大写应为字母 若参数c为大写英文字母,则返回TRUE,否则返回NULL 宏定义,非真正函数
  isxdigit int isxdigit(int c) #include <ctype.h> 检查参数c是否为16进制数字,只要c复核下列其中一个情况就返回TRUE 16进制数字:0 1 2 3 4 5 6 7 8 9 a b c d e f A B C D E F  若参数c为16进制数字,则返回TRUE,否则返回NULL 宏定义,非真正函数
文件名定义为char_test.c
 
#include 
#include
void main(){ char str[]="123c@#FDsP[e?"; int i; printf("--isalnum function : test char is alphanumeric or not.\n"); for ( i =0; str[i] != 0; i++ ) { if( isalnum(str[i]) ) printf("%c is an alphanumeric character\n", str[i]); else printf("%c is not an alphanumeric character\n", str[i]); } printf("--isalpha function : test char is alphabetic character or not.\n"); for ( i =0; str[i] != 0; i++ ) { if( isalpha(str[i]) ) printf("%c is an alphabetic character\n", str[i]); else printf("%c is not an alphabetic character\n", str[i]); } printf("--isascii function : test char is ascii character or not.\n"); for ( i =125; i < 130; i++ ) { if( isascii(str[i]) ) printf("%d is an ascii character\n", i); else printf("%d is not an ascii character\n", i); } printf("--isblank function : test char is blank character (space or tab) or not.\n"); char str1[]="123c @#FD sP[e?"; for ( i =0 ; str1[i] != 0; i++ ) { if( isblank(str1[i]) ) printf("str1[%d] is an blank character:%c\n", i,str1[i]); else printf("str1[%d] is not an blank character:%c\n", i,str1[i]); } printf("--isdigit function : test char is digital character or not.\n"); char str2[]="123c @#FD sP[e?"; for ( i =0 ; str2[i] != 0; i++ ) { if( isdigit(str2[i]) ) printf("str2[%d] is an digit character:%c\n", i,str2[i]); else printf("str2[%d] is not an digit character:%c\n", i,str2[i]); } printf("--isgraph isprint function: test char is printable character or not.\n"); char str3[]="a5 @;"; for ( i=0; str3[i] != 0; i++ ) { if( isgraph(str3[i]) ) printf("str[%d] is printable character: %d\n",i, str3[i]); } printf("--islower isupper function: test char is lower-case/upper-case character or not.\n"); char str4[]="123c@#FDsP[e?"; for ( i=0; str4[i] != 0; i++ ) { if( islower(str4[i]) ) printf("str[%d] is lower-case character: %d\n",i, str4[i]); else if( isupper(str4[i]) ) printf("str[%d] is upper-case character: %d\n",i, str4[i]); } printf("--isspace function: test char is white-space character (space/tab//t/n/v/f ) or not.\n"); char str5[]="123 c@# FD\tsP[e?\n"; for ( i=0; str5[i] != 0; i++ ) { if( isspace(str5[i]) ) printf("str5[%d] is white-space character: %d\n",i, str5[i]); } printf("--ispunct function: 测试字符是否是标点符号\n"); char str6[]="123 c@# FD\tsP[e?\n"; for ( i=0; str6[i] != 0; i++ ) { if( ispunct(str6[i]) ) printf("str6[%d] 是标点符号 : %d\n",i, str6[i]); }}

  makefile 内容如下:

all:char_testchar_test:char_test.c    gcc $^ -o $@

 

转载于:https://www.cnblogs.com/Eastsong/p/3569106.html

你可能感兴趣的文章
optionMenu-普通菜单使用
查看>>
MVC3分页传2参
查看>>
2016-2017-2点集拓扑作业[本科生上课时]讲解视频
查看>>
appium(13)- server config
查看>>
IIS负载均衡-Application Request Route详解第六篇:使用失败请求跟踪规则来诊断ARR...
查看>>
管理信息系统 第三部分 作业
查看>>
[Leetcode Week13]Search a 2D Matrix
查看>>
查看端口占用cmd命令
查看>>
2019.01.17王苛震作业
查看>>
Halcon学习(八)文本操作
查看>>
MFC电子词典
查看>>
简单工厂(Simple Factory)
查看>>
04: 打开tornado源码剖析处理过程
查看>>
02: 安装epel 解决centos7无法使用yum安装nginx
查看>>
清除浮动
查看>>
PayPal(贝宝)支付接口、文档、IPN
查看>>
站立会议总结07
查看>>
ORACLE 10G R2_执行计划中cost cardinality bytes cpu_cost io_cost解释
查看>>
关于this和base
查看>>
本地存储
查看>>