c# – 在另一个数组中找到一个数组(byte [])?

前端之家收集整理的这篇文章主要介绍了c# – 在另一个数组中找到一个数组(byte [])?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在另一个byte []中找到byte []的最简单方法是什么?我有一种感觉,我可以用 linq做,但我不知道如何.

注意:我用[c#]搜索并没有找到任何东西,我感到很惊讶.

解决方法

这是一个简单(天真?)的方法
static int search(byte[] haystack,byte[] needle)
{
    for (int i = 0; i <= haystack.Length - needle.Length; i++)
    {
        if (match(haystack,needle,i))
        {
            return i;
        }
    }
    return -1;
}

static bool match(byte[] haystack,byte[] needle,int start)
{
    if (needle.Length + start > haystack.Length)
    {
        return false;
    }
    else
    {
        for (int i = 0; i < needle.Length; i++)
        {
            if (needle[i] != haystack[i + start])
            {
                return false;
            }
        }
        return true;
    }
}
原文链接:https://www.f2er.com/csharp/97997.html

猜你在找的C#相关文章