Namensräume
Varianten

std::regex_traits::translate_nocase

Aus cppreference.com

<metanoindex/>

 
 
Reguläre Ausdrücke Bibliothek
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_regex(C++11)
sub_match(C++11)
match_results(C++11)
Algorithmen
Original:
Algorithms
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_match(C++11)
regex_search(C++11)
regex_replace(C++11)
Iteratoren
Original:
Iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_iterator(C++11)
regex_token_iterator(C++11)
Ausnahmen
Original:
Exceptions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_error(C++11)
Traits
Original:
Traits
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_traits(C++11)
Konstanten
Original:
Constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
syntax_option_type(C++11)
match_flag_type(C++11)
error_type(C++11)
 
 
<tbody> </tbody>
CharT translate_nocase(CharT c) const;
Ermittelt die Vergleichs-Taste für das Zeichen c, derart, daß alle Zeichen, die äquivalent zu dieser Zeichen im durchdrungen Gebietsschema sind, ohne auf die Unterschiede Fall, wenn überhaupt, den gleichen Schlüssel zu erzeugen .
Original:
Obtains the comparison key for the character c, such that all characters that are equivalent to this character in the imbued locale, ignoring the case differences, if any, produce the same key.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Wenn die regex-Bibliothek auf zwei Zeichen übereinstimmen muss c1 und c2 und die Flagge std::regex_constants::icase true ist, führt es regex_traits<>::translate_nocase(c1) == regex_traits<>::translate_nocase(c2) .
Original:
When the regex library needs to match two characters c1 and c2 and the flag std::regex_constants::icase is true, it executes regex_traits<>::translate_nocase(c1) == regex_traits<>::translate_nocase(c2).
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Standard-Bibliothek Spezialisierungen std::regex_traits Rückkehr std::use_facet<std::ctype<CharT>>(getloc()).tolower(c), das heißt, zu konvertieren c in Kleinbuchstaben, mit dem derzeit durchdrungen locale .
Original:
Standard library specializations of std::regex_traits return std::use_facet<std::ctype<CharT>>(getloc()).tolower(c), that is, convert c to lowercase, using the currently imbued locale.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parameter

c -
Zeichen, das auf Äquivalenz und ignoriert Einzelfall geprüft werden muss
Original:
character that needs to be examined for equivalence, ignoring case
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Rückgabewert

Die Groß-und Kleinschreibung Vergleich Schlüssel für c in der derzeit durchdrungen locale .
Original:
The case-insensitive comparison key for c in the currently imbued locale.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Beispiel

Morty Proxy This is a proxified and sanitized view of the page, visit original site.