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


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