1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| procedure TForm1.Button5Click(Sender: TObject);
var
Fichier : TextFile;
ChaineRecupere, Chaine, ChaineDebut, ChaineFin, NomFichier : string;
StartRecupChaine : boolean;
Position : integer;
begin
NomFichier := 'c:\temp\essai.txt';
ChaineDebut := '<div class="synops">';
ChaineFin := '</div>';
AssignFile(Fichier, NomFichier);
StartRecupChaine := False;
if FileExists(NomFichier) then
begin
Reset(Fichier);
try
while not eof(Fichier) do
begin
readln(Fichier,Chaine);
Position := Pos(ChaineDebut,Chaine);
if Position > 0 then
begin
Chaine := Copy(Chaine,Position + Length(ChaineDebut), Length(Chaine));
ChaineRecupere := Chaine;
StartRecupChaine := True;
end;
if StartRecupChaine then
begin
Position := Pos(ChaineFin,Chaine);
if Position > 0 then
begin
ChaineRecupere := ChaineRecupere + Copy(Chaine,1,Position -1);
Break;
end
else
ChaineRecupere := ChaineRecupere + Chaine;
end;
end;
finally
CloseFile(Fichier);
end;
end;
Showmessage(ChaineRecupere);
end; |
Partager