std::wcschr
Aus cppreference.com
<metanoindex/>
<tbody> </tbody>| 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.
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. |
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.
Beispiel
| This section is incomplete Reason: no example |
