Namensräume
Varianten

std::regex_constants::error_type

Aus cppreference.com
< cpp‎ | regex

 
 
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)
 
definiert in Header <regex>
typedef/*implementation defined*/ error_type;
(seit C++11)
staticconstexpr error_type error_collate =/*unspecified*/;

staticconstexpr error_type error_ctype =/*unspecified*/;
staticconstexpr error_type error_escape =/*unspecified*/;
staticconstexpr error_type error_backref =/*unspecified*/;
staticconstexpr error_type error_brack =/*unspecified*/;
staticconstexpr error_type error_paren =/*unspecified*/;
staticconstexpr error_type error_brace =/*unspecified*/;
staticconstexpr error_type error_badbrace =/*unspecified*/;
staticconstexpr error_type error_range =/*unspecified*/;
staticconstexpr error_type error_space =/*unspecified*/;
staticconstexpr error_type error_badrepeat =/*unspecified*/;
staticconstexpr error_type error_complexity =/*unspecified*/;

staticconstexpr error_type error_stack =/*unspecified*/;
(seit C++11)
Die error_type ist ein Typ, Fehler, die während Analysieren des regulären Ausdrucks auftreten können beschreibt .
Original:
The error_type is a type that describes errors that may occur during regular expression parsing.
The text has been machine-translated via Google Translate.
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

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)[edit]
close