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()用法及代码示例
- C++ iswprint()用法及代码示例
- C++ iswdigit()用法及代码示例
- C++ iswxdigit()用法及代码示例
- C++ iswupper()用法及代码示例
- C++ iswalnum()用法及代码示例
- C++ iswlower()用法及代码示例
- C++ iswcntrl()用法及代码示例
- C++ iswgraph()用法及代码示例
- C++ iswspace()用法及代码示例
- C++ iswctype()用法及代码示例
- C++ iswalpha()用法及代码示例
- C++ iswblank()用法及代码示例
- C++ is_unsigned用法及代码示例
- C++ is_fundamental用法及代码示例
- C++ isdigit()用法及代码示例
- C++ is_scalar用法及代码示例
- C++ is_pointer用法及代码示例
- C++ is_polymorphic用法及代码示例
- C++ isalpha()用法及代码示例
注:本文由纯净天空筛选整理自 C++ iswpunct()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。