System.RegularExpressionsCore.TPerlRegEx.Stop
Delphi
property Stop: Integer read FStop write SetStop;
C++
__property int Stop = {read=FStop, write=SetStop, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | System.RegularExpressionsCore.pas System.RegularExpressionsCore.hpp |
System.RegularExpressionsCore | TPerlRegEx |
Description
Last character in Subject to search through.
Last character in Subject that Match and MatchAgain search through. By default, they search until the end of the string. Use the Stop property to search through only part of the string without having to reallocate a truncated string.
See Also
Code Examples