◐ Shell
clean mode source ↗

std::regex_constants::error_type – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

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*/; static constexpr error_type error_escape = /*unspecified*/; static constexpr error_type error_backref = /*unspecified*/; static constexpr error_type error_brack = /*unspecified*/; static constexpr error_type error_paren = /*unspecified*/; static constexpr error_type error_brace = /*unspecified*/; static constexpr error_type error_badbrace = /*unspecified*/; static constexpr error_type error_range = /*unspecified*/; static constexpr error_type error_space = /*unspecified*/; static constexpr error_type error_badrepeat = /*unspecified*/; static constexpr error_type error_complexity = /*unspecified*/; static constexpr 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.

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]