c#一串数组,{FA,AF,00,03,00,31,31,33,FA,AF,00,02,00,34,35............} 数组长度不固定,首先找到FA,AF为特征值的两个元素,然后删除当前的两个元素以及后面的三个元素,也就是说删除FA,AF,00,03,00和FA,AF,00,02,00,剩下的元素重新生成一个数组。
收起
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { byte[] arr = { 0xFA, 0xAF, 0x00, 0x03, 0x00, 0x31, 0x31, 0x33, 0xFA, 0xAF, 0x00, 0x02, 0x00, 0x34, 0x35 }; List<int> toRemove = new List<int>() { }; bool fa = false; for (int i = 0; i < arr.Length; i++) { if (arr[i] == 0xFA) { fa = true; continue; } if (arr[i] == 0xAF && fa) { toRemove.AddRange(Enumerable.Range(i - 1, 5)); i += 3; fa = false; }; } arr = arr.Select((x, i) => new { x, i }).Where(x => !toRemove.Contains(x.i)).Select(x => x.x).ToArray(); Console.WriteLine(string.Join(" ", arr.Select(x => x.ToString("X2")))); } } }
报告相同问题?
程序员都在用的中文IT技术交流社区
专业的中文 IT 技术社区,与千万技术人共成长
关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!