std::regex_constants::error_type
![]() |
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. |
definiert in Header <regex>
|
||
typedef /*implementation defined*/ error_type; |
(seit C++11) | |
static constexpr error_type error_collate = /*unspecified*/; static constexpr error_type error_ctype = /*unspecified*/; |
(seit C++11) | |
error_type
ist ein Typ, Fehler, die während Analysieren des regulären Ausdrucks auftreten können beschreibt .error_type
is a type that describes errors that may occur during regular expression parsing.You can help to correct and verify the translation. Click here for instructions.
Constant
Original: Constant The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Explanation |
error_collate
|
Der Ausdruck enthält einen ungültigen Sortierfolge Namen des Elements
Original: the expression contains an invalid collating element name The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_ctype
|
Der Ausdruck enthält ein ungültiges Zeichen Name einer Klasse
Original: the expression contains an invalid character class name The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_escape
|
Der Ausdruck enthält eine ungültige Escapezeichen oder eine nachgestellte Flucht
Original: the expression contains an invalid escaped character or a trailing escape The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_backref
|
Der Ausdruck enthält einen ungültigen Rückbeziehung
Original: the expression contains an invalid back reference The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_brack
|
Enthält der Ausdruck übereinstimmenden eckigen Klammern ('[' und ']')
Original: the expression contains mismatched square brackets ('[' and ']') The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_paren
|
Enthält der Ausdruck übereinstimmenden Klammern ('(' und ')')
Original: the expression contains mismatched parentheses ('(' and ')') The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_brace
|
Enthält der Ausdruck übereinstimmenden geschweiften Klammern ('{' und '}')
Original: the expression contains mismatched curly braces ('{' and '}') The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_badbrace
|
Der Ausdruck enthält einen ungültigen Bereich in einem {} Ausdruck
Original: the expression contains an invalid range in a {} expression The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_range
|
Der Ausdruck enthält ein ungültiges Zeichen Bereich (zB [ba])
Original: the expression contains an invalid character range (e.g. [b-a]) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_space
|
es war nicht genug Speicher, um den Ausdruck in einem endlichen Automaten zu konvertieren
Original: there was not enough memory to convert the expression into a finite state machine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_badrepeat
|
einem *? + {wurde nicht durch einen gültigen regulären Ausdruck vorangestellt
Original: one of *?+{ was not preceded by a valid regular expression The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_complexity
|
Die Komplexität einer versuchten Übereinstimmung einen vordefinierten Pegel überschritten
Original: the complexity of an attempted match exceeded a predefined level The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_stack
|
es war nicht genug Speicher, um eine Übereinstimmung durchführen
Original: there was not enough memory to perform a match 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
(C++11) |
meldet Fehler durch die reguläre Ausdrücke Bibliothek erzeugt Original: reports errors generated by the regular expressions library The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Klasse) |