Espaços nominais
Variantes
Acções

std::regex_constants::error_type

Da cppreference.com
< cpp‎ | regex

 
 
Biblioteca de expressões regulares
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.
(C++11)
Algoritmos
Original:
Algorithms
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Iteradores
Original:
Iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Exceções
Original:
Exceptions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Características
Original:
Traits
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Constantes
Original:
Constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
error_type
(C++11)
 
Definido no cabeçalho <regex>
typedef /*implementation defined*/ error_type;
(desde 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*/;
(desde C++11)
O error_type é um tipo que descreve os erros que podem ocorrer durante a análise da expressão regular.
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.
Constante
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
a expressão contém um nome de elemento inválido de intercalação
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
a expressão contém um nome de classe de caractere inválido
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
a expressão contém um caractere inválido escapou ou uma fuga de fuga
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
a expressão contém uma referência para trás inválido
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
a expressão contém incompatíveis entre colchetes ('[' e ']')
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
a expressão contém parênteses incompatíveis ('(' e ')')
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
a expressão contém incompatíveis chaves ('{' e '}')
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
a expressão contém um intervalo inválido em uma expressão {}
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
A expressão contém um intervalo de caracteres inválidos (por exemplo, [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
não havia memória suficiente para converter a expressão em uma máquina de estado finito
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
um dos *? + {não foi precedida de uma expressão regular válida
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
a complexidade de uma tentativa de correspondência excedeu um nível pré-definido
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
não havia memória suficiente para realizar uma partida
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.

[editar] Veja também

relatórios de erros gerados pela biblioteca de expressões regulares
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.

(classe) [edit]