std::wcspbrk
Da cppreference.com.
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <cwchar>
|
||
const wchar_t* wcspbrk( const wchar_t* dest, const wchar_t* str ); |
||
wchar_t* wcspbrk( wchar_t* dest, const wchar_t* str ); |
||
Trova il primo carattere nella stringa puntata da ampio
dest
, che è anche in larga stringa puntata da str
.Original:
Finds the first character in wide string pointed to by
dest
, that is also in 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.
Indice |
[modifica] Parametri
dest | - | puntatore alla stringa con terminazione null ampio da analizzare
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. |
src | - | puntatore alla stringa con terminazione null ampio che contiene i caratteri da cercare
Original: pointer to the null-terminated wide string that contains the characters 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. |
[modifica] Valore di ritorno
Puntatore al primo carattere
dest
, che è anche in str
, o NULL se nessun personaggio esiste.Original:
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.
[modifica] Esempio
This section is incomplete Reason: no example |
[modifica] Vedi anche
restituisce la lunghezza massima del segmento iniziale che consiste ampia del solo' non trovato in un'altra stringa larga Original: returns the length of the maximum initial segment that consists of only the wide not found 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. (funzione) | |
trova la prima occorrenza di un carattere esteso in una stringa di larghezza 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. (funzione) | |
C documentation for wcspbrk
|