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


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


iswspace()是C /C++中的内置函数,该函数检查给定的宽字符是否为宽空白字符。它在C++的cwctype头文件中定义。

用法

int iswspace(ch)

参数:该函数接受一个强制性参数ch,该参数指定要检查的宽字符,是否要检查宽空白字符。


返回值:该函数返回两个值,如下所示。

  • 如果参数ch为宽空格,则它将返回非零值。
  • 如果不是小写字符,则返回0。

以下示例程序旨在说明上述函数。

程序1

// C++ program to illustrate 
// iswspace() function 
#include <cwctype> 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
    wchar_t c; 
    int i = 0; 
    wchar_t str[] = L"Geeks For Geeks\n"; 
  
    // Check for every character 
    // in th string 
    while (str[i]) { 
        c = str[i]; 
  
        // Function to check the character 
        // is a wide whitespace or not 
        if (iswspace(c)) 
            c = L'\n'; 
        putwchar(c); 
        i++; 
    } 
    return 0; 
}
输出:
Geeks
For
Geeks

程序2

// C++ program to illustrate 
// iswspace() function 
#include <cwctype> 
#include <iostream> 
using namespace std; 
  
int main() 
{ 
    wchar_t c; 
    int i = 0; 
    wchar_t str[] = L"Hello Ishwar Gupta\n"; 
  
    // Check for every character 
    // in th string 
    while (str[i]) { 
        c = str[i]; 
        // Function to check the character 
        // is a wide whitespace or not 
        if (iswspace(c)) 
            c = L'\n'; 
        putwchar(c); 
        i++; 
    } 
    return 0; 
}
输出:
Hello
Ishwar
Gupta


相关用法


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