易截截图软件、单文件、免安装、纯绿色、仅160KB

在Delphi中使用正则表达式

//参考地址:http://www.wangchao.net.cn/bbsdetail_41190.html
一、微软RegExp
      1. 下载并安装最新版的"Microsoft(r) Windows(r) Script"
  2. RegExp包含在vbscript.dll中所以我们必须先注册regsvr32 vbscript.dll
  注(安装了Ie5后默认已经包含该控件)
  3.在Delphi中引入"Microsoft VBScript Regular Expressions"
  主菜单->Project->Import type library->在列表中选择"Microsoft VBScript Regular Expressions"
  生成TRegExp控件
  4.使用以下代码调用TRegExp控件
二、代码:
      procedure TForm1.Button1Click(Sender: TObject);
  var
  machs: IMatchCollection;
  Matchs: Match;
  submatch: ISubMatches;
  i, j: integer;
  begin
  RegExp1.Global := true;
  RegExp1.Pattern := '\w+\.\w+(?!.)';
  RegExp1.IgnoreCase := true;
  machs := RegExp1.Execute('http://www.xcolor.cn/dd/page1.htm') as
  IMatchCollection;
  for i := 0 to machs.Count - 1 do
  begin
  Matchs := machs.Item[i] as Match;
  submatch := Matchs.SubMatches as ISubMatches;
  memo1.Lines.Add(matchs.Value);
  //for j:=0 to submatch.Count -1 do
  // memo1.Lines.Add(submatch.Item[j])
  end;
  end;


相关文档:

delphi 实现 图片类型转换 jpg

下面三个delphi函数实现了bmp类型图片和jpg(jpeg)类型图片的转换和改变位图图片的大小。
jpg转换为bmp:
{********************************************
作者/日期
描述: 实现jpg(jpeg)图片向bmp图片的转换
参数介绍
FileName:要转换的jpg(jpeg)图片的名称(包括路径)
SaveFileName:转换后的bmp图片的存储位置。 ......

Using COM+ object pooling with Delphi 6

 URL: http://edn.embarcadero.com/article/27568
Abstract: Delphi 6 introduces support for COM+ object pooling, which can provide significant performance improvements under some circumstances. We take a look at Delphi 6s object pooling support. By Vincent Parrett.
Typically, when a client appl ......

delphi 快捷键

 Ctrl+PageUp      将光标移至本屏的第一行,屏幕不滚动。
 Ctrl+PageDown    将光标移至本屏的最后一行,屏幕不滚动。
 Ctrl+↓          向下滚动屏幕,光标跟随滚动不出本屏。
 Ctrl+↑ &nb ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号