wcscspn
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 <wchar.h> | ||
size_t wcscspn(constwchar_t* dest, constwchar_t* src ); | ||
Restituisce la lunghezza del segmento iniziale massimo della stringa puntata da ampia
dest
, che consiste solo i caratteri non si trovano in larga stringa puntata da src
.Original:
Returns the length of the maximum initial segment of the wide string pointed to by
dest
, that consists of only the characters not found in wide string pointed to by src
.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
La lunghezza del segmento iniziale massima che contiene solo i caratteri non presenti nella stringa di caratteri puntata da
src
Original:
The length of the maximum initial segment that contains only characters not found in the character string pointed to by
src
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 di soli caratteri larghi trovati in un'altra stringa larga Original: returns the length of the maximum initial segment that consists of only the wide characters 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 posizione di carattere largo in una stringa di larghezza, in un'altra stringa di larghezza 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. (funzione) | |
C++ documentation for wcscspn |