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


C++ iswpunct()用法及代碼示例


C++ 中的iswpunct() 函數檢查給定的寬字符是否為標點符號。

iswpunct() 函數在<cwctype> 頭文件中定義。

iswpunct()原型

int iswpunct(wint_t ch);

iswpunct() 函數檢查ch 是否為標點符號。默認情況下,標點符號是

!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~.

參數:

  • ch :要檢查的寬字符。

返回:

  • 如果ch 是標點符號,iswpunct() 函數將返回非零值。
  • 如果ch 不是標點符號,則返回零。

示例:iswpunct() 函數如何工作?

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

int main()
{
	setlocale(LC_ALL, "en_US.UTF-8");
	wchar_t ch1 = L'\u0938';
	wchar_t ch2 = L'\u007e';
	
	iswpunct(ch1) ? wcout << ch1 << L" is a punctuation character" : wcout << ch1 << L" is not a punctuation character";
	wcout << endl;
	iswpunct(ch2) ? wcout << ch2 << L" is a punctuation character" : wcout << ch2 << L" is not a punctuation character";
	
	return 0;
}

運行程序時,輸出將是:

स is not a punctuation character
~ is a punctuation character

相關用法


注:本文由純淨天空篩選整理自 C++ iswpunct()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。