wcscspn

Da cppreference.com.
< c‎ | string‎ | wide

 
 
 
Stringhe larghe null-terminated
Funzioni
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Carattere manipolazione
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.
Le conversioni in formati numerici
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.
Della gestione delle stringhe
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.
Matrice manipolazione
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
 
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.

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.

[modifica]Esempio

[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)[modifica]
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)[modifica]
C++ documentation for wcscspn
close