Namensräume
Varianten

std::wctrans

Aus cppreference.com
< cpp‎ | string‎ | wide

 
 
Strings Bibliothek
Null-terminierte Strings
Original:
Null-terminated strings
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Byte-Strings
Multibyte-Strings
Wide Strings
Classes
Original:
Classes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_string
char_traits
 
Nullterminierten Wide Strings
Funktionen
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Character Manipulation
Original:
Character manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Umwandlungen in numerische Formate
Original:
Conversions to numeric formats
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
String-Manipulation
Original:
String manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Array-Manipulation
Original:
Array manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
wmemcpy
wmemmove
wmemcmp
wmemchr
wmemset
 
definiert in Header <cwctype>
std::wctrans_t wctrans(constchar* str );
Konstruiert einen Wert vom Typ std::wctrans_t, die eine Kategorie LC_CTYPE-Zeichen-Mapping beschreibt. Es kann eine der Standard-Mappings zu sein, oder ein locale-Mapping, wie "tojhira" oder "tojkana" .
Original:
Constructs a value of type std::wctrans_t that describes a LC_CTYPE category of wide character mapping. It may be one of the standard mappings, or a locale-specific mapping, such as "tojhira" or "tojkana".
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten]Parameter

str -
C-String, der den Namen des gewünschten Mapping.

Die folgenden Werte str in allen C locales unterstützt:

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
"toupper"
identifiziert die Zuordnung durch towupper verwendet
Original:
identifies the mapping used by towupper
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
"tolower"
identifiziert die Zuordnung durch towlower verwendet
Original:
identifies the mapping used by towlower
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Original:
C string holding the name of the desired mapping.

The following values of str are supported in all C locales:

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
"toupper"
identifiziert die Zuordnung durch towupper verwendet
Original:
identifies the mapping used by towupper
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
"tolower"
identifiziert die Zuordnung durch towlower verwendet
Original:
identifies the mapping used by towlower
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[Bearbeiten]Rückgabewert

std::wctrans_t Objekt eignet sich für den Einsatz mit std::towctrans um breite Zeichen nach dem Namen Kartierung der aktuellen C locale oder Null zuordnen, wenn str nicht nennen eine Abbildung von der aktuellen C locale unterstützt .
Original:
std::wctrans_t object suitable for use with std::towctrans to map wide characters according to the named mapping of the current C locale or zero if str does not name a mapping 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.

[Bearbeiten]Siehe auch

führt Zeichenzuordnung nach dem angegebenen LC_CTYPE Mapping Kategorie
Original:
performs character mapping according to the specified LC_CTYPE mapping category
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion)[edit]
C documentation for wctrans
close