Schon wieder hups. Copy nimmt nicht Anfang und Ende, sondern Anfang und Länge als Parameter an:
inhalt.Text := Copy(inhalt.text, Pos('', inhalt.text) + Length(''), Pos('', inhalt.text) - Pos('', inhalt.text) - Length(''));
Oder etwas übersichtlicher:
Delphi-Quellcode:
const KeyWord1 = '';
KeyWord2 = '';
var NavigationBegin: Integer;
begin
[...]
NavigationBegin := Pos(KeyWord1, inhalt.Text) + Length(KeyWord1);
inhalt.Text := Copy(inhalt.Text, NavigationBegin, Pos(KeyWord2, inhalt.Text) - NavigationBegin);