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. |
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*/; |
(desde C++11) | |
error_type
é um tipo que descreve os erros que podem ocorrer durante a análise da expressão regular.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.
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
(C++11) |
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) |