TRichString.Substring Method
Overloads
TRichString.Substring(Integer)
Retrieves a substring from this instance. The substring starts at a specified character position and ends at the end of the string.
Syntax
Unit: FlexCel.Core
function TRichString.Substring(const index: Integer): TRichString; overload;
Parameters
<-> |
Parameter |
Type |
Description |
const |
index |
Integer |
Start of the substring (0 based) |
See also
TRichString.Substring(Integer, Integer)
Retrieves a substring from this instance. The substring starts at a specified character position and has a specified length.
Syntax
Unit: FlexCel.Core
function TRichString.Substring(const index: Integer; const count: Integer): TRichString; overload;
Parameters
<-> |
Parameter |
Type |
Description |
const |
index |
Integer |
Start of the substring (0 based) |
const |
count |
Integer |
Number of characters to copy. |
See also