![]() |
|
#2
|
||||
|
||||
![]() Код:
function StrToHex(source: String): String; var i:integer; c:Char; s:String; begin s := ''; for i:=1 to Length(source) do begin c := source[i]; s := s + IntToHex(Integer(c),2)+' '; end; result := s; end; |