头文件:#include <ctype.h>
isprint() 函数用来判断一个字符是否为打印字符,其原型为:
int isprint(int c);
【参数】c 为需要被检测的字符。
【返回值】如果 c 为可打印字符,将返回非 0 值,否则返回 0。
可打印字符的ASCII码值大于 0x1f(除了0x7f(DEL)),这些字符可以显示到屏幕上,让我们看到;不能显示在屏幕上,我们看不到的,叫控制字符,ASCII码值为 0x00 ~ 0x1f,再加上 0x7f(DEL)。检测控制字符请使用 iscntrl() 函数。
注意,此函数为宏定义,非真正函数。
【实例】判断str 字符串中哪些为可打印字符包含空格字符。
#include <ctype.h>
main(){
char str[] = "a5 @;";
int i;
for(i = 0; str[i] != 0; i++)
if(isprint(str[i]))
printf("str[%d] is printable character:%d\n", i, str[i]);
}
输出结果: