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 en la cabecera <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 es un tipo que describen los errores que pueden ocurrir durante el análisis de expresiones regulares .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
|
la expresión contiene un nombre no válido elemento a tratar
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
|
la expresión contiene el nombre de un carácter de clase no válida
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
|
la expresión contiene un carácter no válido de escape o una fuga final
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
|
la expresión contiene una referencia hacia atrás inválida
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
|
la expresión contiene no coincidentes entre corchetes ('[' y ']')
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
|
la expresión contiene paréntesis no coincidentes ('(' y ')')
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
|
la expresión contiene no coincidentes entre llaves ('{' y '}')
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
|
la expresión contiene un intervalo no válido en una expresión {}
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
|
la expresión contiene un intervalo de caracteres no válidos (por ejemplo, [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
|
no había suficiente memoria para convertir la expresión en una 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
|
uno de *? + {no fue precedida por una expresión 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
|
la complejidad de un partido intento excedido un nivel predefinido
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
|
no había suficiente memoria para realizar un partido
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] Ver también
| (C++11) |
informes de errores generados por la biblioteca de expresiones 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. (clase) |

