System.RegularExpressionsCore.TPerlRegEx.MatchedLength
Delphi
property MatchedLength: Integer read GetMatchedLength;
C++
__property int MatchedLength = {read=GetMatchedLength, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | System.RegularExpressionsCore.pas System.RegularExpressionsCore.hpp |
System.RegularExpressionsCore | TPerlRegEx |
Description
Length of the substring matched.
Length of the substring matched by the regular expression since the last call to Match method or MatchAgain method. This is a shortcut to Length(MatchedText) and will execute much faster. Run-time and read-only.
See Also
Code Examples