iswblank()是C /C++中的内置函数,该函数检查给定的宽字符是否为空字符。它在C++的cwctype头文件中定义。
用法:
int isblank(ch)
参数:该函数接受单个强制性参数ch,该参数指定宽字符,我们必须检查该宽字符是否为空字符。
返回值:该函数返回两个值,如下所述:
- 如果ch是空白字符,则返回非零值。
- 如果不是,则返回0。
以下示例程序旨在说明上述函数。
程序1:
// Program to illustrate
// isblank() function
#include <cwctype>
#include <iostream>
using namespace std;
int main()
{
wchar_t ch1 = ' ';
wchar_t ch2 = 'i';
// check if character is blank or not
if(isblank(ch1))
cout << "ch1 is blank \n";
else
cout << "ch1 is not blank\n";
// check if character is blank or not
if(isblank(ch2))
cout << "ch2 is blank \n";
else
cout << "ch2 is not blank\n";
return 0;
}
输出:
ch1 is blank ch2 is not blank
程序2:
// Program to illustrate
// isblank() function
#include <cwctype>
#include <iostream>
using namespace std;
int main()
{
wchar_t ch1 = '3';
wchar_t ch2 = ' ';
// check if character is blank or not
if(isblank(ch1))
cout << "ch1 is blank \n";
else
cout << "ch1 is not blank\n";
// check if character is blank or not
if(isblank(ch2))
cout << "ch2 is blank \n";
else
cout << "ch2 is not blank\n";
return 0;
}
输出:
ch1 is not blank ch2 is blank
相关用法
- C++ log()用法及代码示例
- C++ div()用法及代码示例
- C++ fma()用法及代码示例
- C++ real()用法及代码示例
- C++ imag()用法及代码示例
- C++ map key_comp()用法及代码示例
- C++ regex_iterator()用法及代码示例
- C++ valarray pow()用法及代码示例
- C++ valarray log()用法及代码示例
注:本文由纯净天空筛选整理自IshwarGupta大神的英文原创作品 iswblank() function in C/C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。