當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。