System.RegularExpressionsCore.TPerlRegEx.MatchAgain
Delphi
function MatchAgain: Boolean;
C++
bool __fastcall MatchAgain();
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.RegularExpressionsCore.pas System.RegularExpressionsCore.hpp |
System.RegularExpressionsCore | TPerlRegEx |
Description
Attempt to match the regex to the remainder of the string after the previous match.
If you assigned the Start property, MatchAgain continues from that position instead. If not, you should only call MatchAgain after calling Match.
See Also
Code Examples