std::match_results<BidirIt,Alloc>:: ready
| Localization library | |||||||||||||||||||||||||
| Regular expressions library (C++11) | |||||||||||||||||||||||||
| Formatting library (C++20) | |||||||||||||||||||||||||
| Null-terminated sequence utilities | |||||||||||||||||||||||||
| Byte strings | |||||||||||||||||||||||||
| Multibyte strings | |||||||||||||||||||||||||
| Wide strings | |||||||||||||||||||||||||
| Primitive numeric conversions | |||||||||||||||||||||||||
|
|||||||||||||||||||||||||
| Text encoding identifications | |||||||||||||||||||||||||
|
|||||||||||||||||||||||||
| Classes | ||||
|
(C++11)
|
||||
|
(C++11)
|
||||
|
(C++11)
|
||||
| Algorithms | ||||
|
(C++11)
|
||||
|
(C++11)
|
||||
|
(C++11)
|
||||
| Iterators | ||||
|
(C++11)
|
||||
|
(C++11)
|
||||
| Exceptions | ||||
|
(C++11)
|
||||
| Traits | ||||
|
(C++11)
|
||||
| Constants | ||||
|
(C++11)
|
||||
|
(C++11)
|
||||
|
(C++11)
|
||||
| Regex Grammar | ||||
|
(C++11)
|
| Member functions | ||||
| State | ||||
|
match_results::ready
|
||||
| Element access | ||||
| Iterators | ||||
| Format | ||||
| Modifiers | ||||
| Non-member functions | ||||
|
(until C++20)
|
||||
|
bool
ready
(
)
const
;
|
(seit C++11) | |
Gibt an, ob die Übereinstimmungsergebnisse bereit (gültig) sind oder nicht.
Ein standardmäßig konstruiertes Übereinstimmungsergebnis hat keinen Ergebnisstatus (ist nicht ready ) und kann nur durch einen der Regex-Algorithmen in den ready-Zustand versetzt werden. Der ready -Zustand impliziert, dass alle Übereinstimmungsergebnisse vollständig ermittelt wurden.
Das Ergebnis des Aufrufs der meisten Memberfunktionen des
match_results
-Objekts, das nicht
ready
ist, ist undefiniert.
Rückgabewert
true wenn die Übereinstimmungsergebnisse bereit sind, false andernfalls.
Beispiel
#include <iostream> #include <regex> #include <string> int main() { std::string target("big-red-cat"); std::smatch sm; std::cout << "Default constructed smatch is " << (sm.ready() ? "ready.\n" : "not ready.\n"); std::regex re1(".*-red-.*"); std::regex_search(target, sm, re1); std::cout << "After search, smatch is " << (sm.ready() ? "ready.\n" : "not ready.\n"); }
Ausgabe:
Default constructed smatch is not ready. After search, smatch is ready.