System.RegularExpressionsCore.TPerlRegEx.Start
Delphi
property Start: Integer read GetStart write SetStart;
C++
__property int Start = {read=GetStart, write=SetStart, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | System.RegularExpressionsCore.pas System.RegularExpressionsCore.hpp |
System.RegularExpressionsCore | TPerlRegEx |
Description
Starting position in Subject to look for matches.
Starting position in Subject from which MatchAgain begins.
By default, MatchAgain continues from the end of the previous match, or from the start of the subject if there is no previous match. Set the Start property to continue searching from another position.
See Also
Code Examples