function StrToHexStr(const S:string):string;//字符串转换成16进制字符串var I:Integer;begin for I:=1 to Length(S) do begin if I=1 then Result:=IntToHex(Ord(S[1]),2) else Result:=Result+' '+IntToHex(Ord(S[I]),2); end;end; 相关文章: 2022-12-23 2022-12-23 2021-07-09 2022-12-23 2021-07-15 2021-09-16 2021-10-17