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


C语言 wcslen用法及代码示例


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

用法:

size_t wcslen (const wchar_t* wcs);
取得较宽的字串长度
返回C宽字符串的长度wcs

这是之间的宽字符数wcs和第一个空宽字符(不包括在内)。

这是宽字符等价于strlen(<cstring>)。

参数

wcs
C宽字符串。

返回值

C宽字符串的长度。

示例

/* wcslen example */
#include <stdio.h>
#include <wchar.h>

int main ()
{
  wchar_t wsInput[256];
  wprintf (L"Enter a sentence: ");
  fgetws ( wsInput, 256, stdin );  /* includes newline characters */
  wprintf (L"You entered %u characters.\n",wcslen(wsInput));
  return 0;
}


输出:

Enter sentence: just testing
You entered 13 characters.

相关用法


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