当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ isprint()用法及代码示例


C++ 中的isprint() 函数检查给定字符是否可打印。

isprint() 原型

int isprint(int ch);

isprint() 函数检查 ch 是否可按当前 C 语言环境分类打印。默认情况下,以下字符是可打印的:

  • 数字(0 到 9)
  • 大写字母(A 到 Z)
  • 小写字母(a 到 z)
  • 标点符号(!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~)
  • Space

如果 ch 的值不能表示为 unsigned char 或不等于 EOF,则 isprint() 的行为未定义。

它在<cctype> 头文件中定义。

参数:

ch :要检查的字符。

返回:

如果ch 是可打印的,则isprint() 函数返回非零值,否则返回零。

示例:isprint() 函数的工作原理

#include <cctype>
#include <iostream>
#include <cstring>

using namespace std;

int main()
{
    char str[] = "Hello\tall\nhow are you";

    for (int i=0; i<strlen(str); i++)
    {
        /* replace all non printable character by space */
        if (!isprint(str[i]))
            str[i] = ' ';
    }

    cout << str;
    return 0;
}

运行程序时,输出将是:

Hello all how are you

相关用法


注:本文由纯净天空筛选整理自 C++ isprint()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。