在C++中,isprint()是用于字符串和字符处理的预定义函数。 cstring是字符串函数所需的头文件,而cctype是字符函数所需的头文件。
此函数用于检查参数是否包含任何可打印字符。 C++中有许多类型的可打印字符,例如:
- 数字(0123456789)
- 大写字母(ABCDEFGHIJKLMNOPQRSTUVWXYZ)
- 小写字母(abcdefghijklmnopqrstuvwxyz)
- 标点符号(!”#$%&'()*+,-./:;?@[\]^_`{ | }~)
- 空格 ( )
用法:
int isprint ( int c ); c: character to be checked. Returns a non-zero value(true) if c is a printable character else, zero (false).
给定C++中的字符串,我们需要计算字符串中可打印字符的数量。
算法
- 遍历给定的字符串字符直至其长度,检查字符是否为可打印字符。
- 如果它是可打印的字符,则将计数器加1,否则遍历下一个字符。
- 打印计数器的值。
例子:
Input:string = 'My name \n is \n Ayush' Output:18 Input:string = 'I live in \n Dehradun' Output:19
// CPP program to count printable characters in a string
#include <iostream>
#include <cstring>
#include <cctype>
using namespace std;
// function to calculate printable characters
void space(string& str)
{
int count = 0;
int length = str.length();
for (int i = 0; i < length; i++) {
int c = str[i];
if (isprint(c))
count++;
}
cout << count;
}
// Driver Code
int main()
{
string str = "My name \n is \n Ayush";
space(str);
return 0;
}
输出:
18
相关用法
注:本文由纯净天空筛选整理自 isprint() in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。