- 人气:
- 放大
- 缩小
- 二维码
- 赞赏
delphi 获取随机汉字的函数
function SuiJiString(const AWeiShu: Integer): string;
const
SourceStr: string = '金木水火土日月阴阳水火风雷';
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(9)+1];
end;
Exit(MyRep);
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
Form1.Caption:=SuiJiString(10);
end;