std::wctype — cppreference.com
De cppreference.com
<metanoindex/>
<tbody> </tbody>
| Déclaré dans l'en-tête <cwctype> |
||
|
|
||
Construit une valeur de std::wctype_t type qui décrit une catégorie LC_CTYPE de la classification des caractères de large. C'est peut-être l'une des catégories de classification standard ou une catégorie spécifique aux paramètres régionaux, tels que "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.
Paramètres
| str | - | C chaîne contenant le nom de la catégorie souhaitée Original: C string holding the name of the desired category The text has been machine-translated via Google Translate. |
Les valeurs suivantes sont prises en charge dans str tous les paramètres régionaux 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.
valeur de Original: value of The text has been machine-translated via Google Translate. |
effect |
"alnum"
|
identifie la catégorie utilisée par std::iswalnum Original: identifies the category used by std::iswalnum The text has been machine-translated via Google Translate. |
"alpha"
|
identifie la catégorie utilisée par std::iswalpha Original: identifies the category used by std::iswalpha The text has been machine-translated via Google Translate. |
"blank"
|
identifie la catégorie utilisée par std::iswblank (C++11) Original: identifies the category used by std::iswblank (C++11) The text has been machine-translated via Google Translate. |
"cntrl"
|
identifie la catégorie utilisée par std::iswcntrl Original: identifies the category used by std::iswcntrl The text has been machine-translated via Google Translate. |
"digit"
|
identifie la catégorie utilisée par std::iswdigit Original: identifies the category used by std::iswdigit The text has been machine-translated via Google Translate. |
"graph"
|
identifie la catégorie utilisée par std::iswgraph Original: identifies the category used by std::iswgraph The text has been machine-translated via Google Translate. |
"lower"
|
identifie la catégorie utilisée par std::iswlower Original: identifies the category used by std::iswlower The text has been machine-translated via Google Translate. |
"print"
|
identifie la catégorie utilisée par std::iswprint Original: identifies the category used by std::iswprint The text has been machine-translated via Google Translate. |
"space"
|
identifie la catégorie utilisée par std::iswspace Original: identifies the category used by std::iswspace The text has been machine-translated via Google Translate. |
"upper"
|
identifie la catégorie utilisée par std::iswupper Original: identifies the category used by std::iswupper The text has been machine-translated via Google Translate. |
"xdigit"
|
identifie la catégorie utilisée par std::iswxdigit Original: identifies the category used by std::iswxdigit The text has been machine-translated via Google Translate. |
Retourne la valeur
std::wctype_t objet peut être utilisé avec std::iswctype de classer les caractères larges en fonction de la catégorie nommée de la locale C actuelle ou zéro si str ne désigne pas une catégorie soutenue par la locale courante 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.
Voir aussi
classer un caractère large en fonction de la catégorie LC_CTYPE spécifié Original: classifies a wide character according to the specified LC_CTYPE category The text has been machine-translated via Google Translate. (fonction) [edit] | |