程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> 如何將integer串轉化成byte數組

如何將integer串轉化成byte數組

編輯:Delphi

  How to Convert a String of Integers into an Array of Byte
  如何將integer串轉化成byte數組

  The best solution is to dynamically create an array of byte that has length equal to that of the string. Once you have your array you can fill the array with the values from the string, however there is some offset since the ascii representation of the character '1' isn't equivalent to 1.
  最好的解決方案是動態的創建一個與這個串長度相同的byte數組。一旦您得到了數組您就可以用串中的值填充數組,但是因為ASC字符'1'並不與1相等,所以有一個偏移量。
  Below is a sample of how one might return an array of byte:
  下面是一個如何返回byte數組的例子:

  ~~~~~~~~~~~~~~~~~~~~~~~~~
  interface
  uses
     ...
  type
     dynamic array type for Array of Byte
     TByteArr = array of byte;

     ...
  implementation

  function ArrOfByte(AStr: String): TByteArr;
  var
     j: integer;
  begin
     SetLength( Result, Length(AStr)) ;
     for j := 0 to Length(AStr) - 1 do
       Result[j] := ord(AStr[j + 1]) - 48;
  end;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved