- 人气:
- 放大
- 缩小
- 二维码
- 赞赏
delphi Hex --> String
procedure TForm1.Button2Click(Sender: TObject);
const Source: string = '4D 5A';
var S: string;
t: Integer;
begin
with TStringList.Create do
try
Text := StringReplace(Source, #32, #13#10, [rfReplaceAll]);
S := '';
for t := 0 to Count - 1 do
S := S + Chr(StrToInt('$' + Strings[t]));
ShowMessage(S);
finally
Free;
end;
end;