WinAPI 字符及字符串函数(13): lstrcmp、lstrcmpi - 对比串  
官方Delphi 学习QQ群: 682628230(三千人)
频道

WinAPI 字符及字符串函数(13): lstrcmp、lstrcmpi - 对比串


WinAPI 字符及字符串函数(13): lstrcmp、lstrcmpi - 对比串
lstrcmp 区分大小写; lstrcmpi 不区分大小写. 返回值: -1、0、1, 其中 0 表示相同.
--------------------------------------------------------------------------------

unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;

type
TForm1 = class(TForm)
Button1: TButton;
Button2: TButton;
Button3: TButton;
Button4: TButton;
Button5: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure Button4Click(Sender: TObject);
procedure Button5Click(Sender: TObject);
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

const
Msgs: array[-1..1] of Char = ('<', '=', '>');

procedure TForm1.Button1Click(Sender: TObject);
var
p1,p2: PChar;
n: Integer;
begin
p1 := 'A';
p2 := 'B';

n := lstrcmp(p1, p2);
ShowMessageFmt('%s %s %s', [p1, Msgs[n], p2]); {A < B}

n := lstrcmpi(p1, p2);
ShowMessageFmt('%s %s %s', [p1, Msgs[n], p2]); {A < B}
end;

procedure TForm1.Button2Click(Sender: TObject);
var
p1,p2: PChar;
n: Integer;
begin
p1 := 'A';
p2 := 'a';

n := lstrcmp(p1, p2);
ShowMessageFmt('%s %s %s', [p1, Msgs[n], p2]); {A > a}

n := lstrcmpi(p1, p2);
ShowMessageFmt('%s %s %s', [p1, Msgs[n], p2]); {A = a}
end;

procedure TForm1.Button3Click(Sender: TObject);
var
p1,p2: PChar;
n: Integer;
begin
p1 := 'ABC';
p2 := 'abcd';

n := lstrcmp(p1, p2);
ShowMessageFmt('%s %s %s', [p1, Msgs[n], p2]); {ABC < abcd}

n := lstrcmpi(p1, p2);
ShowMessageFmt('%s %s %s', [p1, Msgs[n], p2]); {ABC < abcd}
end;

{这和 Delphi 的 CompareStr、CompareText 区别还是很大}
procedure TForm1.Button4Click(Sender: TObject);
var
p1,p2: PChar;
n: Integer;
begin
p1 := 'A';
p2 := 'a';

n := CompareStr(p1, p2);
ShowMessage(IntToStr(n)); {-32}

n := CompareText(p1, p2);
ShowMessage(IntToStr(n)); {0}
end;

{和 StrComp、StrIComp、StrLComp、StrLIComp 也不一样}
procedure TForm1.Button5Click(Sender: TObject);
var
p1,p2: PChar;
n: Integer;
begin
p1 := 'A';
p2 := 'a';

n := StrComp(p1, p2);
ShowMessage(IntToStr(n)); {-32}

n := StrIComp(p1, p2);
ShowMessage(IntToStr(n)); {0}

n := StrLComp(p1, p2, 1);
ShowMessage(IntToStr(n)); {-32}

n := StrLIComp(p1, p2, 1);
ShowMessage(IntToStr(n)); {0}
end;

end.


推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 DelphiW.com 开发 源码 文档 技巧 All Rights Reserved
晋ICP备14006235号-8 晋公网安备 14108102000087号

执行时间: 0.03654408454895 seconds