1. 程式人生 > >solidity智慧合約[15]-fixtostring

solidity智慧合約[15]-fixtostring

固定位元組陣列轉string

固定位元組陣列轉換為string沒有好的辦法,必須要首先將固定位元組陣列轉換為動態位元組陣列,再將動態位元組陣列轉換為string

1
2
3
4
5
6
7
8
9
10
11
12
//bytes2  ->  bytes   ---->string
 function fixtostr(bytes32 _newname) pure public returns(string){


   bytes memory newName = new bytes(_newname.length);


   for(uint i = 0;i<newName.length;i++){
       newName[i] =  _newname[i];
   }

   return string(newName);
}

上面的函式傳遞0x6a6f的時候,返回的結果為"bytes32 newname": "0x6a6f000000000000000000000000000000000000000000000000000000000000
這顯然不是我們想要的。這是由於新建的動態陣列的長度為32的原因。下面對其進行改進:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

17
18
function fixtostr2(bytes32 _newname) pure public returns(string){
 //計數
  uint count = 0 ;

  for(uint i = 0;i<_newname.length;i++){
      bytes1 ch = _newname[i];
      if(ch !=0){
          count++;
      }
  }


  bytes memory name2 = new bytes(count);

  for(uint j = 0;j<name2.length;j++){
      name2[j] = _newname[j];
  }
  return string(name2);
}

image.png