std::match_results::max_size
Da cppreference.com.
< cpp | regex | match results
![]() |
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. |
size_type max_size() const; |
(dal C++11) | |
Restituisce il numero massimo di sottocorrispondenze tipo
match_results
è in grado di tenere a causa delle limitazioni del sistema di attuazione o di una raccolta, vale a dire std::distance(begin(), end()) per il maggior numero di sottocorrispondenze.Original:
Returns the maximum number of submatches the
match_results
type is able to hold due to system or library implementation limitations, i.e. std::distance(begin(), end()) for the largest number of submatches.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Indice |
[modifica] Parametri
(Nessuno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica] Valore di ritorno
Numero massimo di sottocorrispondenze
Original:
Maximum number of submatches
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica] Eccezioni
[modifica] Complessità
Costante.
Original:
Constant.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.