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


C++ wmemchr()用法及代码示例


C++ 中的wmemchr() 函数在指定数量的宽字符中搜索第一次出现的宽字符。

wmemchr() 函数在<cwchar> 头文件中定义。

wmemchr()原型

const wchar_t* wmemchr( const wchar_t* ptr, wchar_t ch, size_t count );
wchar_t* wmemchr( wchar_t* ptr, wchar_t ch, size_t count );

wmemchr() 函数采用三个参数:ptr , chcount。它在 ptr 指向的对象的第一个 count 宽字符中定位第一次出现的 ch

如果 count 的值为零,则该函数返回一个空指针。

参数:

  • ptr:指向要搜索的宽字符数组的指针。
  • ch:要搜索的宽字符。
  • count:要搜索的宽字符数。

返回:

如果找到字符,wmemchr() 函数返回指向宽字符位置的指针,否则返回空指针。

示例:wmemchr() 函数如何工作?

#include <cwchar>
#include <clocale>
#include <iostream>
using namespace std;

int main()
{
	setlocale(LC_ALL, "en_US.utf8");

	wchar_t ptr[] = L"\u0102\u0106\u0126\u01f6\u021c\u0246\u0376\u024a";
	wchar_t ch = L'Ħ';
	int count = 5;
	
	if (wmemchr(ptr,ch, count))
		wcout << ch << L" is present in first " << count << L" characters of \"" << ptr << "\"";
	else
		wcout << ch << L" is not present in first " << count << L" characters of \"" << ptr << "\"";
	
	return 0;
}

运行程序时,输出将是:

Ħ is present in first 5 characters of "ĂĆĦǶȜɆͶɊ"

相关用法


注:本文由纯净天空筛选整理自 C++ wmemchr()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。