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


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


C++ 中的iswprint() 函数检查是否可以打印给定的宽字符。

iswprint() 函数在<cwctype> 头文件中定义。

iswprint()原型

int iswprint(wint_t ch);

iswprint() 函数检查 ch 是否可打印。默认情况下,以下字符是可打印的:

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

参数:

  • ch :要检查的宽字符。

返回:

  • 如果可以打印 ch,iswprint() 函数将返回非零值。
  • 如果无法打印ch,则返回零。

示例:iswprint() 函数如何工作?

#include <cwctype>
#include <cwchar>
#include <iostream>
#include <clocale>
using namespace std;

int main()
{
	setlocale(LC_ALL, "en_US.UTF-8");

	wchar_t str[] = L"Ĥĕllö\tĂll\nĦow are ŷou";
	for (int i=0; i<wcslen(str); i++)
	{
		/* replace all non printable character by hyphen */
		if (!iswprint(str[i]))
			str[i] = '-';
	}
	
	wcout << str;
	return 0;
}

运行程序时,输出将是:

Ĥĕllö Ăll Ħow are ŷou

这里,\t\n 是字符串中的不可打印字符。

相关用法


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