wctype
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/>
<tbody> </tbody>| Elemento definito nell'header <wctype.h>
|
||
wctype_t wctype( const char* str ); |
||
Costruisce un valore di
wctype_t tipo che descrive una categoria di classificazione LC_CTYPE carattere esteso. Può essere una delle categorie di classificazione standard, o di un locale specifico per categoria, ad esempio "jkanji".Original:
Constructs a value of type
wctype_t that describes a LC_CTYPE category of wide character classification. It may be one of the standard classification categories, or a locale-specific category, such as "jkanji".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.
Parametri
| str | - | C stringa contenente il nome della categoria desiderata
Original: C string holding the name of the desired category The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
I seguenti valori di
str sono supportate in tutte le versioni locali C:Original:
The following values of
str are supported in all C locales: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.
valore di
str Original: value of str The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
effect |
"alnum"
|
identifica la categoria utilizzata da
iswalnum Original: identifies the category used by iswalnum The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
"alpha"
|
identifica la categoria utilizzata da
iswalpha Original: identifies the category used by iswalpha The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
"blank"
|
identifica la categoria utilizzata da
iswblank (C99)Original: identifies the category used by iswblank (C99)The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
"cntrl"
|
identifica la categoria utilizzata da
iswcntrl Original: identifies the category used by iswcntrl The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
"digit"
|
identifica la categoria utilizzata da
iswdigit Original: identifies the category used by iswdigit The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
"graph"
|
identifica la categoria utilizzata da
iswgraph Original: identifies the category used by iswgraph The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
"lower"
|
identifica la categoria utilizzata da
iswlower Original: identifies the category used by iswlower The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
"print"
|
identifica la categoria utilizzata da
iswprint Original: identifies the category used by iswprint The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
"space"
|
identifica la categoria utilizzata da
iswspace Original: identifies the category used by iswspace The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
"upper"
|
identifica la categoria utilizzata da
iswupper Original: identifies the category used by iswupper The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
"xdigit"
|
identifica la categoria utilizzata da
iswxdigit Original: identifies the category used by iswxdigit The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valore di ritorno
wctype_t oggetto adatto per l'uso con iswctype di classificare caratteri estesi a seconda della categoria di nome del locale C corrente o zero se str non viene designato un categoria supportato dalla localizzazione corrente C.Original:
wctype_t object suitable for use with iswctype to classify wide characters according to the named category of the current C locale or zero if str does not name a category supported by the current C locale.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.
Vedi anche
classifica un carattere esteso a seconda della categoria LC_CTYPE specificato Original: classifies a wide character according to the specified LC_CTYPE category 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 wctype
| |