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


C语言 iswpunct用法及代码示例


C语言wctype头文件(wctype.h)中iswpunct函数的用法及代码示例。

用法:

int iswpunct (wint_t c);
检查宽字符是否为标点字符
检查是否c是一个标点符号

A 操纵性格是在特定语言环境中视为标点符号的字符。这些是带有图形表示的字符(如iswgraph)必须是非字母数字的(如iswalnum)。

此函数的等价于宽字符ispunct(<cctype>): 如果c翻译为wctob到一个角色ispunct是真的,它一直被认为是标点符号通过此函数(某些locale-specific可能除外printable 空格以外的字符L' ')。

在C++中,此函数的locale-specific模板版本(ispunct)存在于标题中<locale>适用于所有字符类型。

参数

c
要检查的宽字符,强制转换为wint_t, 或者WEOF
wint_t是整数类型。

返回值

不同于零的值(即,true)如果确实c是标点符号。零(即false) 否则。

示例

/* iswpunct example */
#include <stdio.h>
#include <wctype.h>
int main ()
{
  int i=0;
  int cx=0;
  wchar_t str[] = L"Hello, welcome!";
  while (str[i])
  {
    if (iswpunct(str[i])) cx++;
    i++;
  }
  wprintf (L"The sentence contains %d punctuation characters.\n", cx);
  return 0;
}


输出:
The sentence contains 2 puntuation characters.

相关用法


注:本文由纯净天空筛选整理自C标准库大神的英文原创作品 C iswpunct function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。