📜  C / C++中的iswprint()及其示例

📅  最后修改于: 2021-05-30 18:21:30             🧑  作者: Mango

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

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

语法

int iswprint(ch)

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

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

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

下面的程序说明了上述函数。

程序1

// Program to illustrate
// towprint() function
#include 
#include 
#include 
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 
#include 
#include 
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, !@#
想要从精选的最佳视频中学习和练习问题,请查看《基础知识到高级C的C基础课程》。