本文整理自网络,侵删。
function SuiJiString(const AWeiShu: Integer): string;const SourceStr: string = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';var MyRep: string; I: Integer;begin Randomize; for I := 1 to AWeiShu do begin //这里只所以必须加1,是因为SourceStr是从1开始的,而Random是从0开始的,SourceStr[0]就会报错,SourceStr[63]也会报错 MyRep := MyRep + SourceStr[Random(61)+1]; end; Exit(MyRep);end;
procedure TForm1.FormCreate(Sender: TObject);beginForm1.Caption:=SuiJiString(32);end;
相关阅读 >>
Delphi 时间与相关类型(3): tfiletime、tsystemtime 及 dos 时间
更多相关阅读请进入《Delphi》频道 >>