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


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



iswprint()是C /C++中的内置函数,该函数检查是否可以打印给定的宽字符。它在C++的cwctype头文件中定义。默认情况下,以下字符是可打印的:

  • 位数(0至9)
  • 大写字母(从A到Z)
  • 小写字母(a至z)
  • 标点符号(!”#$%&'()* +,-./:;?@[\]^_`{|}~)
  • 空间

用法

int iswprint(ch)

参数:该函数接受单个强制性参数ch,该参数指定必须检查的宽字符(是否可打印)。


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

  • 如果参数ch是可打印的,则返回非零值。
  • 如果不是可打印字符,则返回0。

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

程序1

// Program to illustrate 
// towprint() function 
#include <cwchar> 
#include <cwctype> 
#include <iostream> 
using namespace std; 
int main() 
{ 
  
    wchar_t str[] = L"Geeks\tfor\tGeeks"; 
    for (int i = 0; i < wcslen(str); i++) { 
  
        // Function to check if the characters are 
        // printable or not. If not, then replace 
        // all non printable character by comma 
        if (!iswprint(str[i])) 
            str[i] = ', '; 
    } 
    wcout << "Printing, if the given wide  
    character cannot be printed\n"; 
    wcout << str; 
    return 0; 
}
输出:
Printing , if the given wide character cannot be printed
Geeks, for, Geeks

程序2

// Program to illustrate 
// towprint() function 
#include <cwchar> 
#include <cwctype> 
#include <iostream> 
using namespace std; 
int main() 
{ 
  
    wchar_t str[] = L"Ishwar Gupta\t123\t!@#"; 
    for (int i = 0; i < wcslen(str); i++) { 
  
        // Function to check if the characters are 
        // printable or not. If not, then replace 
        // all non printable character by comma 
        if (!iswprint(str[i])) 
            str[i] = ', '; 
    } 
    wcout << "Printing, if the given wide  
    character cannot be printed\n"; 
    wcout << str; 
    return 0; 
}
输出:
Printing , if the given wide character cannot be printed
Ishwar Gupta, 123, !@#


相关用法


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