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


C语言 wctrans用法及代码示例


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

用法:

wctrans_t wctrans (const char* property);
返回字符转换
返回类型的值wctrans_t对应于字符转换属性

特定的语言环境可以接受字符的多种转换。至少所有区域设置都可以识别以下转换:

字符串作为属性描述等效函数
"tolower"小写towlower
"toupper"大写towupper

此函数返回的值取决于LC_CTYPE locale选择的类别。

参数

property
标识字符转换的字符串(请参见上文)。

返回值

类型值wctrans_t识别特定的字符类别。
此值为locale-dependent。

示例

/* wctrans example */
#include <stdio.h>
#include <wctype.h>
int main ()
{
  int i=0;
  wchar_t str[] = L"Test String.\n";
  wchar_t c;
  wctype_t check = wctype("lower");
  wctrans_t trans = wctrans("toupper");
  while (str[i])
  {
    c = str[i];
    if (iswctype(c,check)) c = towctrans(c,trans);
    putwchar (c);
    i++;
  }
  return 0;
}


输出:
TEST STRING.

相关用法


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