PosEx
From SCAR Divi Manual
Definition
function PosEx(search, s: AnsiString; from: Integer): Integer;
Availability
SCAR Divi 3.10 > Current
Description
Returns the position of the first occurrence of a string search in another string s while starting the search at the position given by from.
Example
begin WriteLn(PosEx('a', 'lola abc', 5)); end.
Output:
6