转至繁体中文版     | 网站首页 | 图文教程 | 资源下载 | 站长博客 | 图片素材 | 武汉seo | 武汉网站优化 | 
最新公告:     敏韬网|教学资源学习资料永久免费分享站!  [mintao  2008年9月2日]        
您现在的位置: 学习笔记 >> 图文教程 >> 软件开发 >> Delphi程序 >> 正文
DELPHI常用函数集及简要范例         ★★★★

DELPHI常用函数集及简要范例

作者:闵涛 文章来源:闵涛的学习笔记 点击数:19868 更新时间:2009/4/23 18:30:33
p;StrCat(S1, P1);     { S1 := ''''??????-??????????'''' }
   StrCat(S2, P2);     { S2 := ''''??????-????????'''' }
   MessageDlg( S1+ #13+ S2, mtInformation, [mbOk], 0);
end;

##StrCopy, StrCat Example
-----------------------------------------------------------------------------
StrComp   比较两字串大小.
-----------------------------------------------------------------------------
Unit  SysUtils
函数原型 function StrComp(Str1, Str2 : PChar): Integer;
范例  uses SysUtils;
   const
     S1: PChar = ''''Wacky'''';
     S2: PChar = ''''Code'''';
   var
     C: Integer;
     Result: string;
   begin
     C := StrComp(S1, S2);
     if C < 0 then Result := '''' is less than '''' else
    if C > 0 then Result := '''' is greater than '''' else
     Result := '''' is equal to '''';
     Canvas.TextOut(10, 10, StrPas(S1) + Result +
    StrPas(S2));
   end;
Example
uses SysUtils;
procedure TForm1.Button1Click(Sender: TObject);

var
  Msg: string;
  CompResult: Integer;
begin
  Msg := Edit1.Text;
  CompResult := StrComp(PChar(Edit1.Text), PChar(Edit2.Text));
  if CompResult < 0 then
    Msg := Msg + '''' is less than ''''
  else if CompResult > 0 then
    Msg := Msg + '''' is greater than ''''
  else
    Msg := Msg + '''' is equal to ''''
  Msg := Msg + Edit2.Text;
  ShowMessage(Msg);
end;

var
   S1,S2: PChar;
   I: Integer;
   Res: string;
begin
   S1:= ''''Company'''';
   S2:= ''''COMPANY'''';
   I:= StrComp(S1, S2);
   if I>0 then Res:= ''''>'''' else
      if I<0 then Res:= ''''<'''' else Res:= ''''='''';
   MessageDlg(S1+ Res+ S2, mtInformation, [mbOk], 0);
end;
-----------------------------------------------------------------------------
StrCopy   拷贝字串.
-----------------------------------------------------------------------------
Unit  SysUtils
函数原型 function StrCopy(Dest, Source: PChar): PChar;
范例  uses SysUtils;
   var
     S: array[0..12] of Char;
   begin
     StrCopy(S, ''''ObjectPascal'''');
     Canvas.TextOut(10, 10, StrPas(S));
   end;
Example
procedure TForm1.Button1Click(Sender: TObject);
var
  Buffer: PChar;
begin
  GetMem(Buffer,Length(Label1.Caption) + Length(Edit1.Text) + 1);
  StrCopy(Buffer, PChar(Label1.Caption));
  StrCat(Buffer, PChar(Edit1.Text));
  Label1.Caption := Buffer;
  Edit1.Clear;
  FreeMem(Buffer);
end;
##  StrCopy, StrCat Example
-----------------------------------------------------------------------------
StrDispose  释放StrAlloc or StrNew所配置的空间.
-----------------------------------------------------------------------------
Unit  SysUtils
函数原型 procedure StrDispose(Str: PChar);
范例  uses SysUtils;
   const
     S: PChar = ''''Nevermore'''';
   var
     P: PChar;
   begin
     P := StrNew(S);
     Canvas.TextOut(10, 10, StrPas(P));
     StrDispose(P);
   end;
-----------------------------------------------------------------------------
StrECopy   拷贝字串并传回字串结束位址.
-----------------------------------------------------------------------------
Unit  SysUtils
函数原型 function StrECopy(Dest, Source: PChar): PChar;
范例  uses SysUtils;
   const
     Turbo: PChar = ''''Object'''';
     Pascal: PChar = ''''Pascal'''';
   var
     S: array[0..15] of Char;
   begin
     StrECopy(StrECopy(StrECopy(S, Turbo), '''' ''''), Pascal);
     Canvas.TextOut(10, 10, StrPas(S));
   end;
Example
uses SysUtils;
const

  Turbo: PChar = ''''Object'''';
  Pascal: PChar = ''''Pascal'''';
 var
  S: array[0..15] of Char;
begin
  StrECopy(StrECopy(StrECopy(S, Turbo), '''' ''''), Pascal);
  Canvas.TextOut(10, 10, string(S));
end;
-----------------------------------------------------------------------------
StrEnd    传回字串结束位址.
-----------------------------------------------------------------------------
Unit  SysUtils
函数原型 function StrEnd(Str: PChar): PChar;
范例  uses SysUtils;
   const
     S: PChar = ''''Yankee Doodle'''';
   begin
     Canvas.TextOut(5, 10, ''''The string length of "'''' + StrPas(S)
    + ''''" is '''' +IntToStr(StrEnd(S) - S));
   end;
Example
procedure TForm1.Button1Click(Sender: TObject);

var
  TextBuffer: PChar;
  Ptr: PChar;
begin
  GetMem(TextBuffer, Length(Edit1.Text)+1);
  StrCopy(TextBuffer, PChar(Edit1.Text));
  Ptr := StrEnd(TextBuffer);
  Label1.Caption := '''';
  while Ptr >= TextBuffer do
  begin
    Ptr := Ptr ? 1;
    Label1.Caption := Label1.Caption + Ptr^;
  end;
  FreeMem(TextBuffer);
end;

var
   Str: PChar;
   L: Word;
begin
   ...
   L:= StrEnd(Str) - Str;
   ...
end;
-----------------------------------------------------------------------------
StrIComp   比较两字串大小.(不分大小写)
-----------------------------------------------------------------------------
Unit  SysUtils
函数原型 function StrIComp(Str1, Str2:PChar): Integer;
范例  uses SysUtils;
   const
     S1: PChar = ''''Wacky'''';
     S2: PChar = ''''Code'''';
   var
     C: Integer;
     Result: string;
   begin
     C := StrIComp(S1, S2);
     if C < 0 then Result := '''' is less than '''' else
    if C > 0 then Result := '''' is greater than '''' else
     Result := '''' is equal to '''';
     Canvas.TextOut(10, 10, StrPas(S1) + Result +
    StrPas(S2));
   end;
xample
uses SysUtils;
procedure TForm1.Button1Click(Sender: TObject);

var
  Msg: string;
  CompResult: Integer;
begin
  Msg := Edit1.Text;
  CompResult := StrIComp(PChar(Edit1.Text), PChar(Edit2.Text));
  if CompResult < 0 then
    Msg := Msg + '''' is less than ''''
  else if CompResult > 0 then
    Msg := Msg + '''' is greater than ''''
&n

 << 上一页  [11] [12] [13] [14] [15] [16] [17] [18] [19] [20]  ...  下一页 >> 


没有相关教程
教程录入:mintao    责任编辑:mintao 
  • 上一篇教程:

  • 下一篇教程:
  • 【字体: 】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
      注:本站部分文章源于互联网,版权归原作者所有!如有侵权,请原作者与本站联系,本站将立即删除! 本站文章除特别注明外均可转载,但需注明出处! [MinTao学以致用网]
      网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)

    同类栏目
    · C语言系列  · VB.NET程序
    · JAVA开发  · Delphi程序
    · 脚本语言
    更多内容
    热门推荐 更多内容
  • 没有教程
  • 赞助链接
    更多内容
    闵涛博文 更多关于武汉SEO的内容
    500 - 内部服务器错误。

    500 - 内部服务器错误。

    您查找的资源存在问题,因而无法显示。

    | 设为首页 |加入收藏 | 联系站长 | 友情链接 | 版权申明 | 广告服务
    MinTao学以致用网

    Copyright @ 2007-2012 敏韬网(敏而好学,文韬武略--MinTao.Net)(学习笔记) Inc All Rights Reserved.
    闵涛 投放广告、内容合作请Q我! E_mail:admin@mintao.net(欢迎提供学习资源)

    站长:MinTao ICP备案号:鄂ICP备11006601号-18

    闵涛站盟:医药大全-武穴网A打造BCD……
    咸宁网络警察报警平台