Null-terminated byte strings
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. |
<metanoindex/>
Terminazione Null stringa di byte (NTB) è una sequenza di byte diversi da zero seguito da un byte con valore pari a zero (il carattere nullo di terminazione). Ogni byte in una stringa di byte codifica un carattere di alcuni set di caratteri. Ad esempio, il
{'\x63','\x61','\x74','\0' array di caratteri} è un NTB che fissano la "cat" stringa in codifica ASCII.Original:
A null-terminated byte string (NTBS) is a sequence of nonzero bytes followed by a byte with value zero (the terminating null character). Each byte in a byte string encodes one character of some character set. For example, the character array
{'\x63','\x61','\x74','\0'} is an NTBS holding the string "cat" in ASCII encoding.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.
Funzioni
Original: Character classification The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
Definizione nell'header
<ctype.h> | |
Verifica se un carattere è alfanumerico Original: checks if a character is alphanumeric The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
Verifica se un carattere è alfabetico Original: checks if a character is alphabetic The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
Verifica se un carattere è minuscolo Original: checks if a character is lowercase The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
Verifica se un carattere è un carattere maiuscolo Original: checks if a character is an uppercase character The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
Verifica se un carattere è una cifra Original: checks if a character is a digit The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
controlla se un carattere è un carattere esadecimale Original: checks if a character is a hexadecimal character The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
Verifica se un carattere è un carattere di controllo Original: checks if a character is a control character The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click | |