delphi IntToHexAnsi


本文整理自网络,侵删。

 
function IntToHexAnsi(N : Integer; Digits: Byte) : AnsiString;
var
    Buf : array [0..7] of Byte;
    V : Cardinal;
    I : Integer;
begin
    V := Cardinal(N);
    I := Length(Buf);
    if Digits > I then Digits := I;
    repeat
        Dec(I);
        Buf[I] := V mod 16;
        if Buf[I] < 10 then
            Inc(Buf[I], $30)
        else
            Inc(Buf[I], $37);
        V := V div 16;
    until V = 0;
    while Digits > Length(Buf) - I do begin
       Dec(I);
       Buf[I] := $30;
    end;
    SetLength(Result, Length(Buf) - I);
    Move(Buf[I], Pointer(Result)^, Length(Buf) - I);
end;

相关阅读 >>

Delphi xe10.1 引用计数

Delphi取得trichedit的光标当前位置

Delphi关于小数位精度的问题

Delphi 如何解析网址?

Delphi中使用ixmlhttprequest如何用post方式提交带参

Delphi中限制鼠标的移动区域

Delphi formatdatetime 显示日期时间

Delphi windows服务控制单元

Delphi 10 seattle android应用程序使用toast

Delphi中分隔字符串函数的使用

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...