本文整理自网络,侵删。
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 android实例-红外线操作(xe10.2+小米5)
Delphi firemonkey的stylebook皮肤控件的使用
移植Delphi7的tclientsocket,tserversocket
Delphi xe 共享一个之前封装的多进程共享内存的memorystream
Delphi firedac tfdconnection连接mysql数据库
更多相关阅读请进入《Delphi》频道 >>