std::regex_constants::error_type

Da cppreference.com.
< cpp‎ | regex

 
 
Espressioni regolari libreria
Classi
Original:
Classes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_regex(C++11)
sub_match(C++11)
match_results(C++11)
Algoritmi
Original:
Algorithms
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_match(C++11)
regex_search(C++11)
regex_replace(C++11)
Iteratori
Original:
Iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_iterator(C++11)
regex_token_iterator(C++11)
Eccezioni
Original:
Exceptions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_error(C++11)
Tratti
Original:
Traits
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_traits(C++11)
Costanti
Original:
Constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
syntax_option_type(C++11)
match_flag_type(C++11)
error_type(C++11)
 
Elemento definito nell'header <regex>
typedef/*implementation defined*/ error_type;
(dal C++11)
staticconstexpr error_type error_collate =/*unspecified*/;

staticconstexpr error_type error_ctype =/*unspecified*/;
staticconstexpr error_type error_escape =/*unspecified*/;
staticconstexpr error_type error_backref =/*unspecified*/;
staticconstexpr error_type error_brack =/*unspecified*/;
staticconstexpr error_type error_paren =/*unspecified*/;
staticconstexpr error_type error_brace =/*unspecified*/;
staticconstexpr error_type error_badbrace =/*unspecified*/;
staticconstexpr error_type error_range =/*unspecified*/;
staticconstexpr error_type error_space =/*unspecified*/;
staticconstexpr error_type error_badrepeat =/*unspecified*/;
staticconstexpr error_type error_complexity =/*unspecified*/;

staticconstexpr error_type error_stack =/*unspecified*/;
(dal C++11)
Il error_type è un tipo che descrive gli errori che possono verificarsi durante l'analisi delle espressioni regolari.
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
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

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)[modifica]
close