如果ch是isspace()返回true并用于分隔单词的字符,则isblank()函数返回非零值。因此,对于英语,空白字符为空格和水平制表符。
Header File :
ctype.h
Declaration :
int isblank(int ch)
isblank()和isspace()之间的区别
如果字符是空格,则isspace()仅返回true。换句话说,空白字符是用于分隔一行文本中的单词的空格字符,而isblank()用于标识它。
isblank()将空白字符视为制表字符(’\ t’)和空格字符(”)。
isspace()考虑空格字符:(”)–空格,(’\ t’)–水平制表符,(’\ n’)–换行符,(’\ v’)–垂直制表符,(’\ f’)–提要((\ r))–回车
例子:
Input: Geeks for Geeks
Output: Geeks
for
Geeks
说明:由于Geeks for Geeks有2个空格,并用下划线(_)标记:
Geeks_for_Geeks
我们替换字符的空间。
isblank()C++程序:
此代码按字符打印出字符串字符,用换行符替换任何空白字符。
// CPP program to demonstrate working
// of isblank()
#include
#include
using namespace std;
int main()
{
string str = "Geeks for Geeks";
int i = 0;
// to store count of blanks
int count = 0;
while (str[i]) {
// to get ith character
// from string
char ch = str[i++];
// mark a new line when space
// or horizontal tab is found
if (isblank(ch)) {
cout << endl;
count++;
}
else
cout << ch;
}
cout << "\nTotal blanks are : "
<< count << endl;
return 0;
}
输出:
Geeks
for
Geeks
Total blanks are : 2
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。