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 idhttp1 获取网页代码

Delphi实现注册表的操作

Delphi 2009 泛型容器单元(generics.collections)[3]: tstack<t>

Delphi yesterday、today、tomorrow - 昨天、今天、明天

Delphi 的按位运算详解

Delphi 动态加载删除字体

Delphi的unicode与gb2312转转换,汉字unicode转gb2312

Delphi winsoft comport for android usb

Delphi 播放背景音乐

Delphi webbrowser同时访问两个网址导致程序出错的解决办法

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



打赏

取消

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

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

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

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

评论

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