You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 24, 2020. It is now read-only.
Sorry, this code doesn't extract all links from html source:
procedure Test(html);
var
LHtml: IHtmlElement;
LList: IHtmlElementList;
begin
LHtml := ParserHTML(html);
if LHtml <> nil then
begin
LList := LHtml.SimpleCSSSelector('a');
for LHtml in LList do
Memo1.Lines.Add('url:' + LHtml.Attributes['href']);
end;
end;