Chinaunix首页 | 论坛 | 博客
  • 博客访问: 37962
  • 博文数量: 18
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 212
  • 用 户 组: 普通用户
  • 注册时间: 2014-03-03 22:25
文章分类

全部博文(18)

文章存档

2014年(18)

我的朋友

分类: C/C++

2014-04-15 21:59:44

H3 { margin-bottom: 0.21cm; }H3.western { font-family: "AR PL UMing HK",serif; }H3.cjk { font-family: "AR PL UMing HK"; font-style: normal; }H3.ctl { font-family: "AR PL UMing HK"; }H2 { margin-bottom: 0.21cm; }H2.western { font-family: "AR PL UMing HK",serif; }H2.cjk { font-family: "AR PL UMing HK"; font-style: normal; }H2.ctl { font-family: "AR PL UMing HK"; }P { margin-bottom: 0.21cm; }A:link { }

ctype.h里的函数概况

1 测试函数

1> 函数原型均为int isxxxx(int)

2> 参数为int, 任何均被提升成整型

3> 只能正确处理处于[0, 127]之间的值

2 字符映射函数

1> 函数原型为int toxxxx(int)

2> 对参数进行检测, 若符合范围则转换, 否则不变

int tolower(int); 'A'~'Z' ==> 'a'~'z'

int (int); 'a'~'z' ==> 'A'~'Z'

主要函数简介

isalpha

函数名称: isalpha

函数原型: int isalpha(int ch);

函数功能: 检查ch是否是字母.

函数返回: 是字母返回非0 ,否则返回 0.

参数说明:

所属文件

#include

#include

int main()

{

char ch1='*';

char ch2='a';

if(isalnum(ch1)!=0)

printf("%c is the ASCII number or alphebet\n",ch1);

else

printf("%c is not the ASCII number nor alphebet\n",ch1);

if(isalnum(ch2)!=0)

printf("%c is the ASCII number or alphebet\n",ch2);

else

printf("%c is not the ASCII number nor alphebet\n",ch2);

return 0;

}

iscntrl

函数名称:

函数原型: int (int ch);

函数功能: 检查ch是否(ASCII码在00x1F之间,数值为 0-31).

函数返回: 是返回非0,否则返回 0.

参数说明:

所属文件:

#include

#include

char chars[]={'A',0x09,'Z'};

#define SIZE sizeof(chars)/sizeof(char)

int main()

{

int i;

for(i=0;i

printf("Char %c is %sa Control character\n",

chars[i],(iscntrl(chars[i]))?"":"not");

}

return 0;

}[1] 

isdigit

函数名称: isdigit

函数原型: int isdigit(int ch);

函数功能: 检查ch是否是数(0-9)

函数返回: 是返回非0,否则返回0

参数说明:

所属文件:

#include

#include

int main()

{

char ch1='1';

char ch2='a';

if(isdigit(ch1)!=0)

printf("%c is the ASCII number\n",ch1);

else

printf("%c is not the ASCII number\n",ch1);

if(isdigit(ch2)!=0)

printf("%c is the ASCII number\n",ch2);

else

printf("%c is not the ASCII number\n",ch2);

return 0;

}[2]

isgraph

函数名称: isgraph

函数原型: int isgraph(int ch);

函数功能: 检查ch是否可显示(ASCII码在ox21ox7E之间),不包括空格

函数返回: 是返回非0,否则返回0

参数说明:

所属文件:

#include

#include

int main()

{

char ch1=' ';

char ch2='a';

if(isgraph(ch1)!=0)

printf("%c is the ASCII printable character\n",ch1);

else

printf("%c is not the ASCII printable character\n",ch1);

if(isgraph(ch2)!=0)

printf("%c is the ASCII printable character\n",ch2);

else

printf("%c is not the ASCII printable character\n",ch2);

return 0;

}

islower

函数名称: islower

函数原型: int islower(int ch);

函数功能: 检查ch是否小写字母(a-z)

函数返回: 是返回非0,否则返回0

参数说明:

所属文件:

#include

#include

char chars[]={'A','a','z','Z'};

#define SIZE sizeof(chars)/sizeof(char)

int main()

{

int i;

for(i=0;i

printf("Char %c is %sa lowercase character\n",chars[i],(islower(chars[i]))?"":"not");

}

return 0;

}

isupper

函数名称:

函数原型: int (int ch);

函数功能: 检查ch是否是大写字母(A-Z)

函数返回: 是返回非0,否则返回0

参数说明:

所属文件:

#include

#include

char chars[]={'A','a','z','Z'};

#define SIZE sizeof(chars)/sizeof(char)

int main()

{

int i;

for(i=0;i

printf("Char %c is %san uppercase character\n",

chars[i],(isupper(chars[i]))?"":"not");

}

return 0;

}

tolower

函数名称: tolower

函数原型: int tolower(int ch);

函数功能: ch转换为小写字母

函数返回: 返回ch所代表的的小写字母

参数说明:

所属文件:

#include

#include <>

#include

int main()

{

char x='a', y='b',z='A',w='*';

printf("Character %c to lower is %c\n",x,tolower(x));

printf("Character %c to lower is %c\n",y,tolower(y));

printf("Character %c to lower is %c\n",z,tolower(z));

printf("Character %c to lower is %c\n",w,tolower(w));

return 0;

}

toupper

函数名称: toupper

函数原型: int toupper(int ch);

函数功能: ch转换成大写字母

函数返回: ch相应的大写字母

参数说明:

所属文件:

#include

#include

#include

int main()

{

char x='a', y='b',z='A',w='*';

printf("Character %c to upper is %c\n",x,toupper(x));

printf("Character %c to upper is %c\n",y,toupper(y));

printf("Character %c to upper is %c\n",z,toupper(z));

printf("Character %c to upper is %c\n",w,toupper(w));

return 0;

}

isalnum

函数名称: isalnum

函数原型: int isalnum(int ch);

函数功能: 检查ch是否是字母或数字

函数返回: 是字母或数字返回非0,否则返回0

参数说明:

所属文件:

#include

#include

int main()

{

char ch1 ='*';

char ch2 ='a';

if(isalnum(ch1)!=0)

printf("%c is the ASCII number or alphebet\n",ch1);

else

printf("%c is not the ASCII number nor alphebet\n",ch1);

if(isalnum(ch2)!=0)

printf("%c is the ASCII number or alphebet\n",ch2);

else

printf("%c is not the ASCII number nor alphebet\n",ch2);

return 0;

}

isprint

函数名称: isprint

函数原型: int isprint(int ch);

函数功能: 检查ch是否是可打印(包括空格),ASCII码在ox20ox7E之间

函数返回: 是返回非0,否则返回0

参数说明:

所属文件:

#include

#include

int main()

{

char ch1='\n';

char ch2='a';

if(isprint(ch1)!=0)

printf("%c is the ASCII printable charcater\n",ch1);

else

printf("%c is not the ASCII printable charcater\n",ch1);

if(isprint(ch2)!=0)

printf("%c is the ASCII printable charcater\n",ch2);

else

printf("%c is not the ASCII printable charcater\n",ch2);

return 0;

}

ispunct

函数名称: ispunct

函数原型: int (int ch);

函数功能: 检查ch是否是(不包括空格),即除字母,数字和空格以外的所有可打印字符

函数返回: 是返回非0,否则返回0

参数说明:

所属文件:

#include

#include

int main()

{

char ch1=',';

char ch2='a';

if((ch1)!=0)

printf("%c is the ASCII punct\n",ch1);

else

printf("%c is not the ASCII punct\n",ch1);

if((ch2)!=0)

printf("%c is the ASCII punct\n",ch2);

else

printf("%c is not the ASCII punct\n",ch2);

return 0;

}

isspace

函数名称: isspace

函数原型: int isspace(int ch);

函数功能: 检查ch是否是和跳格符()或换行符

函数返回: 是返回非0,否则返回0

参数说明:

所属文件:

#include

#include

int main()

{

char ch1=' ';

char ch2='a';

if(isspace(ch1)!=0)

printf("%c is the space charcater\n",ch1);

else

printf("%c is not the space charcater\n",ch1);

if(isspace(ch2)!=0)

printf("%c is the space charcater\n",ch2);

else

printf("%c is not the space charcater\n",ch2);

return 0;

}

isxdigit

函数名称: isxdigit

函数原型: int (int ch);

函数功能: 检查ch是否是一个16进制数学(0-9,A-F,a-f)

函数返回: 是返回非0,否则返回0

参数说明:

所属文件:

#include

#include

int main()

{

char ch1='1';

char ch2='a';

if((ch1)!=0)

printf("%c is the ASCII hexadecimal number\n",ch1);

else

printf("%c is not the ASCII hexadecimal number\n",ch1);

if((ch2)!=0)

printf("%c is the ASCII hexadecimal number\n",ch2);

else

printf("%c is not the ASCII hexadecimal number\n",ch2);

return 0;

} 

isascii

函数名称:

函数原型: int (int ch)

函数功能: 测试参数是否是ASCII0-127

函数返回: 是返回非0,否则返回0

参数说明: ch-被测参数

所属文件:

#include

#include

char chars[]={'A',0x80,'Z'};

#define SIZE sizeof(chars)/sizeof(char)

int main()

{

int i;

for(i=0;i

{

printf("Char %c is %san ASCII character\n",

chars[i],(isascii(chars[i]))?"":"not");

}

return 0;

}

阅读(381) | 评论(0) | 转发(0) |
0

上一篇:Unix/Linux 的发展历史

下一篇:printf行缓冲

给主人留下些什么吧!~~