Difference between revisions of "PosEx"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function PosEx(search, s: AnsiString; from: Integer): Integer; </source> ==Availability== SCAR Divi 3.10 > Current ==Descripti...") |
|||
Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
<source lang="scar" lines="false"> | <source lang="scar" lines="false"> | ||
− | function PosEx( | + | function PosEx(const SubStr, S: AnsiString; const Offset: Integer): Integer; |
</source> | </source> | ||
Line 8: | Line 8: | ||
==Description== | ==Description== | ||
− | Returns the position of the first occurrence of a [[AnsiString|string]] ''' | + | Returns the position of the first occurrence of a [[AnsiString|string]] '''SubStr''' in another string '''S''' while starting the search at the position given by '''Offset'''. |
==Example== | ==Example== |
Revision as of 08:30, 2 July 2011
Definition
function PosEx(const SubStr, S: AnsiString; const Offset: Integer): Integer;
Availability
SCAR Divi 3.10 > Current
Description
Returns the position of the first occurrence of a string SubStr in another string S while starting the search at the position given by Offset.
Example
begin WriteLn(PosEx('a', 'lola abc', 5)); end.
Output:
6