wctype
Aus 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>| definiert in Header <wctype.h>
|
||
wctype_t wctype( const char* str ); |
||
Konstruiert einen Wert vom Typ
wctype_t, die eine Kategorie LC_CTYPE Breitzeichen Klassifikation beschreibt. Es kann eine der Standard-Klassifizierungskategorien oder ein locale-spezifischen Kategorie, wie "jkanji" sein .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.
Parameter
| str | - | C-String, der den Namen der gewünschten Kategorie
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. |
: Die folgenden Werte
str in allen C locales unterstütztOriginal:
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.
Wert
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"
|
identifiziert die Kategorie von
iswalnum verwendet 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"
|
identifiziert die Kategorie von
iswalpha verwendet 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"
|
identifiziert die Kategorie von
iswblank (C99) verwendetOriginal: 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"
|
identifiziert die Kategorie von
iswcntrl verwendet 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"
|
identifiziert die Kategorie von
iswdigit verwendet 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"
|
identifiziert die Kategorie von
iswgraph verwendet 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"
|
identifiziert die Kategorie von
iswlower verwendet 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"
|
identifiziert die Kategorie von
iswprint verwendet 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"
|
identifiziert die Kategorie von
iswspace verwendet 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"
|
identifiziert die Kategorie von
iswupper verwendet 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"
|
identifiziert die Kategorie von
iswxdigit verwendet 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. |
Rückgabewert
wctype_t Objekt eignet sich für den Einsatz mit iswctype um breite Zeichen nach dem Namen Kategorie der aktuellen C locale oder Null zu klassifizieren, wenn str nicht nennen eine Kategorie von der aktuellen C locale unterstützt .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.
Siehe auch
stuft ein breites Charakter nach der angegebenen Kategorie LC_CTYPE 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. (Funktion) | |
C++ documentation for wctype
| |