Einzelnen Beitrag anzeigen

Nils_13

Registriert seit: 15. Nov 2004
2.647 Beiträge
 
#6

Re: Alle Links einer HTML-Datei filtern

  Alt 22. Mai 2008, 12:59
Hm, den hatte ich auch schonmal, allerdings wird leider nichts ausgegeben.
Delphi-Quellcode:
for j := 0 to Pred(sl.Count) do
begin
  RegExpr.Expression := '#[url="(.*?)"](.*?)[/url]#';
  if RegExpr.Exec(sl[j]) then
  begin
    repeat
      Result.Append(RegExpr.Match[1]);
    until
      not RegExpr.ExecNext;
  end;
end;
  Mit Zitat antworten Zitat