Registriert seit: 20. Jan 2006
Ort: Lübbecke
11.475 Beiträge
Delphi 12 Athens
|
AW: String in Array of Byte umwandeln [TKey]
2. Mär 2018, 23:53
Delphi-Quellcode:
var
arr: TArray<string>;
S: string;
Key: TKey;
I: Integer;
begin
S := '$3E,$C9,$18,$78,$7D,$AC,$AF,$D3,$64,$E0,$BC,$0A,$43,$68,$2C,$F2';
arr := S.Split([',']);
Assert(Length(arr) = Length(Key), 'Fehler im Keystring');
for I := 0 to Length(Key) - 1 do begin
Key[I] := StrToInt(arr[I]);
end;
end;
|
|
Zitat
|