报错的内容是Number of element invalid in origin string.
位置如图
数据内容是
"- 14665860 31787219 1 IN IP4 172.16.108.70"
两个数字中间多了一个空格,导致判断数据不等于6
所以数据输入的时候把中间的空格去掉一个即可。
if (array.Length == 7)
{
string bugstr = keyValue.Value;
// 找到第一个空格的索引
int firstSpaceIndex = bugstr.IndexOf(' ');
// 找到第二个空格的索引
int secondSpaceIndex = bugstr.IndexOf(' ', firstSpaceIndex + 1);
if (firstSpaceIndex != -1 && secondSpaceIndex != -1)
{
// 移除第二个空格
result = bugstr.Remove(secondSpaceIndex, 1);
Console.WriteLine(result);
}
else
{
Console.WriteLine("字符串中没有足够的空格字符");
}
}