C++ 参考手册

定义于头文件 <cwchar>
const wchar_t* wcschr( const wchar_t* str, wchar_t ch );
      wchar_t* wcschr(       wchar_t* str, wchar_t ch );

寻找宽字符 chstr 所指向的宽字符串中的首次出现。

参数

str - 指向待分析的空终止宽字符的指针
ch - 要搜索的宽字符

返回值

指向 str 中找到的字符的指针,或若找不到这种字符则为 NULL

示例

#include <iostream>
#include <cwchar>
#include <locale>
 
int main()
{
    wchar_t arr[] = L"招き猫 кошка";
    const wchar_t* cat = std::wcschr(arr, L'猫');
    const wchar_t* dog = std::wcschr(arr, L'犬');
 
    std::cout.imbue(std::locale("en_US.utf8"));
 
    if(cat)
        std::cout << "The character 猫 found at position " << cat - arr << '\n';
    else
        std::cout << "The character 猫 not found\n";
 
    if(dog)
        std::cout << "The character 犬 found at position " << dog - arr << '\n';
    else
        std::cout << "The character 犬 not found\n";
}

输出:

The character 猫 found at position 2
The character 犬 not found

参阅

于字符串中寻找字符
(std::basic_string<CharT,Traits,Allocator> 的公开成员函数)
寻找字符的首次出现
(函数)
在宽字符串中寻找宽字符的最后一次出现
(函数)
在一个宽字符串中,寻找另一宽字符串中任何字符的首个位置
(函数)