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 toupper(int); 'a'~'z' ==> 'A'~'Z'
@函数名称: isalpha
函数原型: int isalpha(int ch);
函数功能: 检查ch是否是字母.
函数返回: 1是字母返回 ,否则返回 0.
参数说明:
所属文件 <ctype.h>
#include <stdio.h>
#include <ctype.h>
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 iscntrl(int ch);
函数功能: 检查ch是否控制字符(其ASCII码在0和0x1F之间,数值为 0-31).
函数返回: 是返回 1,否则返回 0.
参数说明:
所属文件: <ctype.h>
#include <stdio.h>
#include <ctype.h>
char chars[]={'A',0x09,'Z'};
#define SIZE sizeof(chars)/sizeof(char)
int main()
{
int i;
for(i=0;i<SIZE;i++){
printf("Char %c is %sa Control character\n",
chars,(iscntrl(chars))?"":"not");
}
return 0;
}
@函数名称: isdigit
函数原型: int isdigit(int ch);
函数功能: 检查ch是否是数字(0-9)
函数返回: 是返回1,否则返回0
参数说明:
所属文件: <ctype.h>
#include <stdio.h>
#include <ctype.h>
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;
}
@函数名称: isgraph
函数原型: int isgraph(int ch);
函数功能: 检查ch是否可显示字符(其ASCII码在ox21到ox7E之间),不包括空格
函数返回: 是返回1,否则返回0
参数说明:
所属文件: <ctype.h>
#include <stdio.h>
#include <ctype.h>
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
函数原型: int islower(int ch);
函数功能: 检查ch是否小写字母(a-z)
函数返回: 是返回1,否则返回0
参数说明:
所属文件: <ctype.h>
#include <stdio.h>
#include <ctype.h>
char chars[]={'A','a','z','Z'};
#define SIZE sizeof(chars)/sizeof(char)
int main()
{
int i;
for(i=0;i<SIZE;i++){
printf("Char %c is %sa lowercase character\n",chars,(islower(chars))?"":"not");
}
return 0;
}
@函数名称: tolower
函数原型: int tolower(int ch);
函数功能: 将ch字符转换为小写字母
函数返回: 返回ch所代表的字符的小写字母
参数说明:
所属文件: <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
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
函数原型: int toupper(int ch);
函数功能: 将ch字符转换成大写字母
函数返回: 与ch相应的大写字母
参数说明:
所属文件: <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
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
函数原型: int isalnum(int ch);
函数功能: 检查ch是否是字母或数字
函数返回: 是字母或数字返回1,否则返回0
参数说明:
所属文件: <ctype.h>
#include <stdio.h>
#include <ctype.h>
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
函数原型: int isprint(int ch);
函数功能: 检查ch是否是可打印字符(包括空格),其ASCII码在ox20到ox7E之间
函数返回: 是返回1,否则返回0
参数说明:
所属文件: <ctype.h>
#include <stdio.h>
#include <ctype.h>
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
函数原型: int ispunct(int ch);
函数功能: 检查ch是否是标点字符(不包括空格),即除字母,数字和空格以外的所有可打印字符
函数返回: 是返回1,否则返回0
参数说明:
所属文件: <ctype.h>
#include <stdio.h>
#include <ctype.h>
int main()
{
char ch1=',';
char ch2='a';
if(ispunct(ch1)!=0)
printf("%c is the ASCII punct\n",ch1);
else
printf("%c is not the ASCII punct\n",ch1);
if(ispunct(ch2)!=0)
printf("%c is the ASCII punct\n",ch2);
else
printf("%c is not the ASCII punct\n",ch2);
return 0;
}
@函数名称: isspace
函数原型: int isspace(int ch);
函数功能: 检查ch是否是空格符和跳格符(控制字符)或换行符
函数返回: 是返回1,否则返回0
参数说明:
所属文件: <ctype.h>
#include <stdio.h>
#include <ctype.h>
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;
}
@函数名称: isupper
函数原型: int isupper(int ch);
函数功能: 检查ch是否是大写字母(A-Z)
函数返回: 是返回1,否则返回0
参数说明:
所属文件: <ctype.h>
#include <stdio.h>
#include <ctype.h>
char chars[]={'A','a','z','Z'};
#define SIZE sizeof(chars)/sizeof(char)
int main()
{
int i;
for(i=0;i<SIZE;i++){
printf("Char %c is %san uppercase character\n",
chars,(isupper(chars))?"":"not");
}
return 0;
}
@函数名称: isxdigit
函数原型: int isxdigit(int ch);
函数功能: 检查ch是否是一个16进制数学字符(即0-9,或A-F,或a-f)
函数返回: 是返回 1,否则返回0
参数说明:
所属文件: <ctype.h>
#include <stdio.h>
#include <ctype.h>
int main()
{
char ch1='1';
char ch2='a';
if(isxdigit(ch1)!=0)
printf("%c is the ASCII hexadecimal number\n",ch1);
else
printf("%c is not the ASCII hexadecimal number\n",ch1);
if(isxdigit(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 isascii(int ch)
函数功能: 测试参数是否是ASCII码0-127
函数返回: 非零-是,0-不是
参数说明: ch-被测参数
所属文件: <ctype.h>
#include <stdio.h>
#include <ctype.h>
char chars[]={'A',0x80,'Z'};
#define SIZE sizeof(chars)/sizeof(char)
int main()
{
相关推荐
C++头文件大全.pdf是一份全面总结C++头文件的PDF文档,涵盖了assert.h、ctype.h、stdio.h等多个头文件的使用和应用场景。 assert.h头文件: assert.h头文件提供了assert()宏,用于保证某个特定条件的满足。如果...
### C/C++头文件概述 在C/C++编程语言中,头文件是非常重要的组成部分,它们提供了函数原型、宏定义以及类型定义等,使得程序能够调用标准库中的功能。本篇将详细介绍C/C++中的一些关键头文件及其作用,特别关注C99...
`<ctype.h>` - **用途**:提供字符检测和转换的功能。 - **关键函数**: - `isalpha(int ch)`:判断字符是否为字母。 - `isalnum(int ch)`:判断字符是否为字母或数字。 - `isdigit(int ch)`:判断字符是否为...
`ctype.h`用于字符处理,如`isalpha`检查字符是否为字母等。在`标准C语言头文件.doc`中,可能会详细介绍这些头文件的内容和使用方法。 进入C++的世界,C++在C的基础上增加了面向对象特性,因此它不仅有C语言的...
- **`<ctype.h>`**:提供了一系列字符处理函数,如 `isupper`, `tolower` 等。 - **`<errno.h>`**:定义了一组错误代码,用于报告系统调用或库函数的失败原因。 - **`<float.h>`**:包含浮点数相关的定义,如最大值...
### C++头文件精讲:理解与应用 在C++编程中,头文件扮演着至关重要的角色,它们包含了函数、宏、类型定义等预处理指令,是程序开发的基础。本篇将深入解析C++标准库中的核心头文件,旨在帮助初学者及进阶开发者...
`ctype.h`是一个标准C库头文件,同样适用于C++,提供了多种用于字符分类和转换的函数。这些函数主要用于检查字符属性(如是否为字母、数字等)以及对字符进行大小写转换。对于C/C++学习者而言,掌握`ctype.h`中的...
2. `<ctype.h>`:包含了字符处理函数,用于字符类型的检查和转换。 3. `<errno.h>`:定义了错误号,用于报告错误条件。 4. `<float.h>`:包含了浮点数的限制信息。 5. `<string.h>`:提供了字符串处理函数。 6. ...
12. `<ctype.h>`:提供了字符处理函数,如`isalnum`、`isalpha`、`isdigit`等,用于检查字符的属性,以及`toupper`和`tolower`用于字符大小写的转换。 13. `<locale.h>`:处理地区化问题,如`setlocale`用于设置...
1. `<ctype.h>`:提供字符处理函数,如测试字符类别和大小写转换。 2. `<locale.h>`:处理地区化,允许设定和查询地区设置,以适应不同的语言和文化差异。 3. `<math.h>`:包含各种数学函数,如三角函数、指数和...
- **功能描述**:类似于`ctype.h`,但针对宽字符。 - **典型用法**:`iswalpha(wc)`, `iswdigit(wc)`等。 #### 二、C++特有头文件 C++在继承了C的基础头文件的同时,还增加了许多特有的库文件。 ##### 1. `...
2. `<ctype.h>`:提供了对字符进行分类和测试的函数,如`isalpha()`、`isdigit()`等。 3. `<errno.h>`:定义了错误代码常量,如`EAGAIN`、`ENOMEM`等,通过`errno`全局变量来获取错误信息。 4. `<float.h>`:包含...
2. `<ctype.h>`: 该头文件提供了用于字符分类和转换的函数。例如,判断字符是否为字母、数字或其他类型。 3. `<errno.h>`: 定义了宏errno及其相关的错误代码,用来指示程序中发生的错误类型。 4. `<float.h>`: ...
- `ctype.h`:包含了字符分类函数,如`isalpha()`, `isdigit()`等,用于判断字符类型。 - `errno.h`:定义了错误编号和与之相关的字符串描述,帮助处理系统调用失败的情况。 - `float.h`:定义了浮点数的精度和范围...
本资源总结了C++头文件的使用,包括assert.h、ctype.h等头文件的使用方法和函数说明。 assert.h头文件: * assert()宏:用于保证满足某个特定条件,用法是:assert(表达式); 如果表达式的值为假,整个程序将退出,...