wctype
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <wctype.h>
|
||
wctype_t wctype( const char* str ); |
||
Constrói um valor de
wctype_t tipo que descreve uma categoria LC_CTYPE de classificação de caracteres de largura. Ela pode ser uma das categorias de classificação padrão, ou uma categoria de localização específica, tal como "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.
Parâmetros
| str | - | C string com o nome da categoria desejada
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. |
Os seguintes valores de
str são suportados em todos os locais 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.
valor de
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 a categoria utilizada pelo
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 a categoria utilizada pelo
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 a categoria utilizada pelo
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 a categoria utilizada pelo
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 a categoria utilizada pelo
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 a categoria utilizada pelo
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 a categoria utilizada pelo
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 a categoria utilizada pelo
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 a categoria utilizada pelo
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 a categoria utilizada pelo
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 a categoria utilizada pelo
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. |
Valor de retorno
wctype_t objecto adequado para uso com iswctype para classificar caracteres de largura de acordo com a categoria com o nome da localidade actual C ou zero se str não indicar uma categoria suportado pela localidade actual 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.
Veja também
classifica um caractere de largura de acordo com a categoria LC_CTYPE especificado 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. (função) | |
C++ documentation for wctype
| |