Registriert seit: 6. Apr 2005
10.109 Beiträge
|
Re: StrRScan auch mit String, nicht nur mit Char
15. Sep 2005, 08:40
Oder so:
Delphi-Quellcode:
function RPos(const subStr, s: string): integer;
var
index: integer;
begin
Result := Pos(subStr, s);
while Result <> 0 do begin
// index := StrUtils.PosEx(subStr, s, Result + Length(subStr)); // fehlerhaft
index := StrUtils.PosEx(subStr, s, Succ(Result));
if index = 0
then Break
else Result := index;
end;
end;
Grüße vom marabu
Fehler im Code berichtigt
|
|
Zitat
|