function RndString(iLength:longInt):string;
var
iCount:longInt;
sTemp:string;
begin
sTemp:='';
Randomize();
for iCount := 1 to iLength do begin
sTemp:=sTemp+Chr(Random(26)+65);
end;
Result:=sTemp;
end;
随机字符串
最新推荐文章于 2025-01-22 20:23:24 发布

3431

被折叠的 条评论
为什么被折叠?



