std::wcschr
Aus cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
definiert in Header <cwchar>
|
||
const wchar_t* strchr( const wchar_t* str, wchar_t ch ); |
||
wchar_t* strchr( wchar_t* str, wchar_t ch ); |
||
Sucht das erste Vorkommen des Breitzeichen
ch
in der weiten String, auf den str
. Original:
Finds the first occurrence of the wide character
ch
in the wide string pointed to by str
. The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Inhaltsverzeichnis |
[Bearbeiten] Parameter
str | - | Zeiger auf den nullterminierten WideString analysiert werden
Original: pointer to the null-terminated wide string to be analyzed The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
ch | - | Breitzeichen zu suchen
Original: wide character to search for The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[Bearbeiten] Rückgabewert
Zeiger auf den gefundenen Zeichens in
str
oder NULL wenn keine solche Zeichen gefunden .Original:
Pointer to the found character in
str
, or NULL if no such character is found.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[Bearbeiten] Beispiel
This section is incomplete Reason: no example |
[Bearbeiten] Siehe auch
wird das letzte Vorkommen eines breiten Zeichen in einem breiten String Original: finds the last occurrence of a wide character in a wide string The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
findet die erste Position jeder Breitzeichen in einem breiten Zeichenfolge in einer weiteren breiten Zeichenfolge Original: finds the first location of any wide character in one wide string, in another wide string The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
C documentation for wcschr
|