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 一个整数转其二进制表示的小函数

Delphi 带密匙的字符串加密解密函数(支持中文)

Delphi得到cpu的序列号

Delphi用sendmessage获取目录下所有文件

Delphi hmac256

Delphi hook 指定程序窗体和控件的 wndproc

Delphi+access错误"不正常地定义参数对象。提供了不一致或不完整的信息。"

Delphi ifileoperation替换shfileoperation

Delphi 时间控制窗口标题栏文字或任务栏标题文字滚动

Delphi 实现定时功能

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



打赏

取消

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

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

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

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

评论

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