Delphi TIdHTTP抓取页面信息


本文整理自网络,侵删。

 
function MacSonucuAl(const id: Integer): string;
  function SubParse(Source, L, R: string): string;
 begin
   Delete(Source, 1, Pos(L, Source) + Length(L) - 1);
   Result := Copy(Source, 1, Pos(R, Source) - 1);
 end;
var
 HTTP: TIdHTTP;
 Temp: string;
begin
 HTTP := TIdHTTP.Create(nil);
 try
   Temp := HTTP.Get('http://www.delphitop.com.com/Mac/' + IntToStr(id) + '/');
   Result := Trim(SubParse(Temp, '<div class="match-score" id="dvScoreText">', '</div>'));
 finally
   HTTP.Free;
 end;
end;

相关阅读 >>

Delphi url编码与解码工具附代码

Delphi sendemail 邮件发送单元

Delphi获得webbrowser中的html文本

Delphi olevariant excel保存文件

Delphi返回一个汉字的unicode编码

Delphi 随意将函数执行权限提高到ring0源代码

Delphi paramstr 获取外部参数

Delphi生成32位随机数

Delphi二值图像投影算法

Delphi 优盘背景生成器源码

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...