`

C++头文件ctype.h

 
阅读更多

ctype.h

 
  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++头文件一览

    ctype.h> //字符处理 #include <errno.h> //定义错误码 #include <float.h> //浮点数处理 #include <fstream.h> //文件输入/输出 #include <iomanip.h> //参数化输入/输出 #...

    c++头文件(传统头文件标准头文件)

    #include <ctype.h> //字符处理 #include <errno.h> //定义错误码 #include <float.h> //浮点数处理 #include <fstream.h> //文件输入/输出 标准 C++ (同上的不再注释) #include <algorithm> //STL 通用...

    C和C++头文件对比一览

    #include <ctype.h> //字符处理 #include <errno.h> //定义错误码 #include <float.h> //浮点数处理 #include <fstream.h> //文件输入/输出 #include <iomanip.h> //参数化输入/输出 #include <iostream.h> ...

    C/C++头文件一览

    #include <ctype.h> //字符处理 #include <errno.h> //定义错误码 #include <float.h> //浮点数处理 #include <fstream.h> //文件输入/输出 #include <iomanip.h> //参数化输入/输出 #include <iostream.h> ...

    C_C++头文件_函数一览.txt

    #include <ctype.h> //字符处理 #include <errno.h> //定义错误码 #include <float.h> //浮点数处理 #include <fstream.h> //文件输入/输出 #include <iomanip.h> //参数化输入/输出

    C++头文件一览---C++和传统C头文件说明

    C++和传统C的头文件说明,如: #include <assert.h> //设定插入点 #include <ctype.h> //字符处理

    C++头文件一览,用于编程。

    C++头文件一览,用于编程。C/C++头文件一览 C、传统 C++ #include <assert.h> //设定插入点 #include <ctype.h> //字符处理 #include <errno.h> //定义错误码 #include <float.h> //浮点数处理

    C/C++语言头文件(全)

    #include <ctype.h> //字符处理 #include <errno.h> //定义错误码 #include <float.h> //浮点数处理 #include <fstream.h> //文件输入/输出 #include <iomanip.h> //参数化输入/输出 #include <iostream.h> /...

    C/C++头文件大全

    ctype h> 字符处理 #include <errno h> 定义错误码 #include <float h> 浮点数处理 #include <fstream h> 文件输入/输出 #include <iomanip h> 参数化输入/输出 #include <...

    c语言库函数使用大全及头文件介绍

    #include <ctype.h> //字符处理 #include <errno.h> //定义错误码 #include <float.h> //浮点数处理 #include <fstream.h> //文件输入/输出 #include <iomanip.h> //参数化输入/输出 #include <iostream.h> ...

    从C/C++迁移到PHP——判断字符类型的函数

    在C/C++中,头文件ctype.h中定义了关于字符类型一组宏,可以得到给定字符的类型。 而PHP中没有相关函数。前些天发现在www.mm4.de下载的PHP中提供了一个名为php_ctype.dll的扩展库, 加载后发现提供一部分此类的函数...

    C语言函数库详解.doc

    2. <ctype.h>:字符类别测试 3. <errno.h>:错误处理 4. <limits.h> :整型常量 5. <locale.h>:地域环境 6. <math.h>:数学函数 7. <setjmp.h>:非局部跳转 8. <signal.h>:信号 9. <stdarg.h>:可变参数表 10. ...

    C/C++语言中的头文件汇总

    C/C++头文件 include <assert> //设定插入点 include <ctype> //字符处理 include <errno> //定义错误码 include <float> //浮点数处理 include <fstream> //文件输入/输出 include <iomanip> //参数化输入/输出 ...

    8051系列单片机C程序设计完全手册_清晰版_2-2

    4.2.1 字符函数CTYPE.H 4.2.2 一般I/O函数STDIO.H 4.2.3 字符串函数STRING.H 4.2.4 标准函数STDLIB.H 4.2.5 数学函数MATH.H 4.2.6 绝对地址访问ABSACC.H 4.2.7 内部函数INTRINS.H 4.2.8 变量参数表STDARG.H ...

    8051系列单片机C程序设计完全手册_清晰版_2-1

    4.2.1 字符函数CTYPE.H 4.2.2 一般I/O函数STDIO.H 4.2.3 字符串函数STRING.H 4.2.4 标准函数STDLIB.H 4.2.5 数学函数MATH.H 4.2.6 绝对地址访问ABSACC.H 4.2.7 内部函数INTRINS.H 4.2.8 变量参数表STDARG.H ...

    C语言精典版本C程序设计语言

    B.2 字符类测试:<ctype.h> B.3 字符串函数:<string.h> B.4 数学函数:<math.h> B.5 实用函数:<stdlib.h> B.6 诊断:<assert.h> B.7 变量变元表:<stdarg.h> B.8 非局部跳转:<setjmp.h> B.9 信号处理:...

    编译原理实验报告 词法分析器实验报告

    #include <ctype.h> Upper(char *s,int l) { int i; for(i=0;i;i++) { s[i]=toupper(s[i]); } } yywrap() { return 1; } 五:DFA 六:数据测试 七:心得体会 其实匹配并不困难,主要是C++知识要求相对较高,...

Global site tag (gtag.js) - Google Analytics