在本文中,我们将讨论iswspace()
C ++中的函数,其语法,工作原理和返回值。
iswspace()函数是C ++中的内置函数,在头文件中定义。该函数检查传递的宽字符是否为空白字符。此函数与的宽字符等效isspace()
,这意味着它的工作原理与所isspace()
支持的宽字符相同。该函数检查传递的参数是否为空格(''),然后返回非零整数值(true),否则返回零(false)
int iswspace(wint_t ch);
该功能仅接受一个参数,即要检查的宽字符。参数用wint_t或WEOF强制转换。
wint_t存储整数类型的数据。
该函数返回一个整数值,该值可以为0(如果为false)或任何非零值(如果为true)。
#include <iostream> #include <cwctype> using namespace std; int main() { wint_t a = '.'; wint_t b = ' '; wint_t c = '1'; iswspace(a)?cout<<"\nIts white space character":cout<<"\nNot white space character"; iswspace(b)?cout<<"\nIts white space character":cout<<"\nNot white space character"; iswspace(c)?cout<<"\nIts white space character":cout<<"\nNot white space character"; }
输出结果
如果我们运行上面的代码,它将生成以下输出-
Not white space character Its white space character Not white space character
#include <iostream> #include <cwctype> using namespace std; int main () { int i, count; wchar_t s[] = L"I am visiting nhooo.com"; count = i = 0; while (s[i]) { if(iswspace(s[i])) count++; i++; } cout<<"There are "<<count <<" white space characters.\n"; return 0; }
输出结果
如果我们运行上面的代码,它将生成以下输出-
There are 4 white space characters.