我需要删除转换为字符串的 byte[] 的前 4 个句子。
到目前为止我所拥有的:
//convert bytearray to string, so I can modify the string
string rawString = Convert.ToBase64String(rawByteArray);
//seperate lines
string[] textLines = Regex.Split(rawString, "\r\n");
//I need to substract the first 4 senctences of the string here!
//convert string back to byte array
byte[] cleanByteArray = rawstring.FromBase64String(rawString);
我如何减去前4个句子?
提前致谢!