std::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 <cwctype>
|
||
std::wctype_t wctype( const char* str ); |
||
Costruisce un valore di
std::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
std::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 std::iswalnum
Original: identifies the category used by std::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 std::iswalpha
Original: identifies the category used by std::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 std::iswblank (C++11)
Original: identifies the category used by std::iswblank (C++11) 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 std::iswcntrl
Original: identifies the category used by std::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 std::iswdigit
Original: identifies the category used by std::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 std::iswgraph
Original: identifies the category used by std::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 std::iswlower
Original: identifies the category used by std::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 std::iswprint
Original: identifies the category used by std::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 std::iswspace
Original: identifies the category used by std::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 std::iswupper
Original: identifies the category used by std::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 std::iswxdigit
Original: identifies the category used by std::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
std::wctype_t oggetto adatto per l'uso con std::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:
std::wctype_t object suitable for use with std::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
| |