Namespaces
Variants
Actions

std::wcschr

From cppreference.com
< cppโ€Ž | stringโ€Ž | wide
 
 
 
 
Defined in header <cwchar>
const wchar_t* wcschr( const wchar_t* str, wchar_t ch );
      wchar_t* wcschr(       wchar_t* str, wchar_t ch );

Finds the first occurrence of the wide character ch in the wide string pointed to by str.

Contents

[edit] Parameters

str - pointer to the null-terminated wide string to be analyzed
ch - wide character to search for

[edit] Return value

Pointer to the found character in str, or a null pointer if no such character is found.

[edit] Example

#include <cwchar>
#include <iostream>
#include <locale>
 
int main()
{
    const 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";
}

Output:

The character ็Œซ found at position 1
The character ็Šฌ not found

[edit] See also

finds the first occurrence of the given substring
(public member function of std::basic_string<CharT,Traits,Allocator>) [edit]
finds the first occurrence of a character
(function) [edit]
finds the last occurrence of a wide character in a wide string
(function) [edit]
finds the first location of any wide character in one wide string, in another wide string
(function) [edit]
C documentation for wcschr