std::regex_constants::error_type
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <regex>
|
||
typedef /*implementation defined*/ error_type; |
(dal C++11) | |
static constexpr error_type error_collate = /*unspecified*/; static constexpr error_type error_ctype = /*unspecified*/; |
(dal C++11) | |
error_type
è un tipo che descrive gli errori che possono verificarsi durante l'analisi delle espressioni regolari.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
|
l'espressione contiene un nome non valido elemento di collazione
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
|
l'espressione contiene un valido nome di classe di caratteri
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
|
l'espressione contiene un carattere non valido fuga o una fuga finale
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
|
l'espressione contiene un riferimento non valido indietro
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
|
l'espressione contiene non corrispondenti parentesi quadre ('[' 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
|
l'espressione contiene parentesi non corrispondenti ('(' 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
|
l'espressione contiene non corrispondenti parentesi graffe ('{' 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
|
l'espressione contiene un intervallo non valido in una {} espressione
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
|
l'espressione contiene un intervallo non valido carattere (ad esempio, [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
|
non c'era memoria sufficiente per convertire l'espressione in una macchina a stati finiti
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 dei *? + {non è stata preceduta da una espressione regolare valida
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 complessità di una corrispondenza forzata superato un livello predefinito
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
|
non c'era memoria sufficiente per eseguire una corrispondenza
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. |
[modifica] Vedi anche
(C++11) |
segnala gli errori generati dalla libreria espressioni regolari 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) |