link如何劃分十六進制的字節數組?要求每一個有效的數據多余32個字節,數據數據之間有不等量的0x0,多余8個,數據裡面也有0x0,但是少於8個。
List<List<byte>> result = new List<List<byte>>();
result.Add(new List<byte>());
int zerocount = 0;
for (int i = 0; i < data.Length; i++)
{
if (data[i] != 0x0) zerocount = 0;
if (data[i] == 0) zerocount++;
result.Last().Add(data[i]);
if (zerocount > 8)
{
result.Add(new List<byte>());
zerocount = 0;
}
}
result = result.Where(x => x.Count() > 32).ToList();