码迷,mamicode.com
首页 > Windows程序 > 详细

Delphi - 生成GUID

时间:2021-02-15 12:21:06      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:result   ref   func   div   function   htm   https   guid   string   

uses   SysUtils;

// 生成GUID
function TForm2.GetGUID: string;
var
  LTep: TGUID;
  sGUID: string;
begin
  CreateGUID(LTep);
  sGUID := GuidToString(LTep);
  sGUID := StringReplace(sGUID, ‘-‘, ‘‘, [rfReplaceAll]);
  sGUID := Copy(sGUID, 2, length(sGUID) - 2);
  Result := sGUID;
end;

 

参考:

https://www.cnblogs.com/xwgcxk/p/7233683.html  

Delphi - 生成GUID

标签:result   ref   func   div   function   htm   https   guid   string   

原文地址:https://www.cnblogs.com/sunylat/p/14397731.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!