Delphi Net.HttpClient正则批量获取网页代码中的数值


本文整理自网络,侵删。

 
program Project1;

{$APPTYPE CONSOLE}

{$R *.res}

uses
  System.SysUtils,
  System.Classes,
  System.Net.HttpClient,
  System.RegularExpressions;

const
  url = 'http://www.delphitop.com/';
var
matchs: TMatchCollection;
m: TMatch;
begin
  var http := THttpClient.Create;
  var sl := TStringList.Create;

  try
    sl.LoadFromStream(http.Get(url).ContentStream, TEncoding.ANSI);

matchs := TRegEx.Matches(sl.Text, '<span>(?<price>(\d+[,.])*\d+)</span>');
for m in matchs do
begin
writeln('获取信息: ', m.Groups.Item['price'].Value);
end;

      Readln;
  finally
    sl.Free;
    http.Free;
  end;
end.

相关阅读 >>

Delphi 读cpu串号的代码

Delphi shellexecute打开文件另类用法

Delphi 主程序装载脚本

Delphi length 统计指定字符串的长度(即个数)

Delphi chromium post

Delphi从网上获取北京时间

Delphi xe5记录android应用程序(日志输出)

Delphi doc转txt

Delphi 比较两个日期是否大于n天

Delphi 利用windows api判断文件共享锁定状态

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



打赏

取消

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

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

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

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

评论

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