C语言ctype头文件(ctype.h)中isspace函数的用法及代码示例。
用法:
int isspace ( int c );
检查字符是否为空格
为了"C"语言环境,空格字符为以下任意一种:
' ' | (0x20) | 空间(SPC) |
'\t' | (0x09) | 水平标签(TAB) |
'\n' | (0x0a) | 换行符(LF) |
'\v' | (0x0b) | 垂直标签(VT) |
'\f' | (0x0c) | 饲料(FF) |
'\r' | (0x0d) | 回车(CR) |
其他语言环境可能会将字符的不同选择视为white-spaces,但绝不会为以下字符返回true的字符isalnum。
有关不同之处的详细图表ctype函数针对标准ASCII字符集的每个字符返回,请参见<cctype>标头。
在C++中,此函数的locale-specific模板版本(isspace)存在于标题中<locale>。
参数
- c
- 要检查的字符,强制转换为int, 或者EOF。
返回值
不同于零的值(即,true)如果确实c是空白字符。零(即false) 否则。示例
/* isspace example */
#include <stdio.h>
#include <ctype.h>
int main ()
{
char c;
int i=0;
char str[]="Example sentence to test isspace\n";
while (str[i])
{
c=str[i];
if (isspace(c)) c='\n';
putchar (c);
i++;
}
return 0;
}
此代码按字符打印出C字符串,用换行符替换任何空白字符。输出:
Example sentence to test isspace |
相关用法
- C语言 isalnum用法及代码示例
- C语言 isalpha用法及代码示例
- C语言 isblank用法及代码示例
- C语言 iscntrl用法及代码示例
- C语言 isdigit用法及代码示例
- C语言 isgraph用法及代码示例
- C语言 islower用法及代码示例
- C语言 isprint用法及代码示例
- C语言 ispunct用法及代码示例
- C语言 isupper用法及代码示例
- C语言 isxdigit用法及代码示例
- C语言 tolower用法及代码示例
- C语言 toupper用法及代码示例
注:本文由纯净天空筛选整理自C标准库大神的英文原创作品 C isspace function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。