Namensräume
Varianten

std::wmemchr

Aus cppreference.com

<metanoindex/>

 
 
Strings Bibliothek
Null-terminierte Strings
Original:
Null-terminated strings
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Byte-Strings
Multibyte-Strings
Wide Strings
Classes
Original:
Classes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_string
char_traits
 
Nullterminierten Wide Strings
Funktionen
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Character Manipulation
Original:
Character manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Umwandlungen in numerische Formate
Original:
Conversions to numeric formats
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
String-Manipulation
Original:
String manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Array-Manipulation
Original:
Array manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
wmemcpy
wmemmove
wmemcmp
wmemchr
wmemset
 
<tbody> </tbody>
definiert in Header <cwchar>
const wchar_t* wmemchr( const wchar_t* ptr, wchar_t ch, std::size_t count );
      wchar_t* wmemchr( wchar_t* ptr, wchar_t ch, std::size_t count );
Sucht das erste Vorkommen Breitzeichen ch in den ersten count breite Zeichen des Objekts, auf das ptr .
Original:
Locates the first occurrence of wide character ch in the initial count wide characters of the object pointed to by ptr.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parameter

ptr -
Zeiger auf das Objekt zu untersuchen
Original:
pointer to the object to be examined
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.
count -
Anzahl der Zeichen zu prüfen
Original:
number of characters to examine
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 die Stelle des Zeichens oder NULL wenn keine solche Zeichen gefunden .
Original:
Pointer to the location of the character, 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.

Beispiel

Siehe auch

findet das erste Vorkommen eines breiten Zeichen in einem breiten String
Original:
finds the first 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) [edit]
Findet das erste Elemente, welches bestimmte Kriterien erfüllt
(Funktions-Template) [edit]
C documentation for wmemchr