首页 > 后端开发 > C++ > 在C/C++中,iswpunct()函数的作用是判断一个宽字符是否为标点符号

在C/C++中,iswpunct()函数的作用是判断一个宽字符是否为标点符号

王林
发布: 2023-09-01 16:09:07
转载
1081 人浏览过

在C/C++中,iswpunct()函数的作用是判断一个宽字符是否为标点符号

函数iswpunct()用于检查传递的宽字符是否为标点符号。如果不是标点符号,则返回零,否则返回非零值。它在“cwctype”头文件中声明。

以下是iswpunct()的语法:

int iswpunct(wint_t character);
登录后复制

这是iswpunct()的一个示例

示例

#include<cwctype>
#include<stdio.h>
using namespace std;
int main() {
   wint_t a = &#39;!&#39;;
   wint_t b = &#39;a&#39;;
   if(iswpunct(a))
   printf("The character is a punctuation.");
   else
   printf("\nThe character is not a punctuation.");
   if(iswpunct(b))
   printf("\nThe character is a punctuation.");
   else
   printf("\nThe character is not a punctuation.");
   return 0;
}
登录后复制

输出

The character is a punctuation.
The character is not a punctuation.
登录后复制

在上面的程序中,两个宽字符被声明为a和b。检查传递的字符是否为标点符号。

wint_t a = &#39;!&#39;;
wint_t b = &#39;a&#39;;
if(iswpunct(a))
printf("The character is a punctuation.");
else
printf("\nThe character is not a punctuation.");
if(iswpunct(b))
printf("\nThe character is a punctuation.");
else
printf("\nThe character is not a punctuation.");
登录后复制

以上是在C/C++中,iswpunct()函数的作用是判断一个宽字符是否为标点符号的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板