Byte array Index Of : byte « Data Types « C# / C Sharp






Byte array Index Of

     

//GNU General Public License version 2 (GPLv2)
//http://walkmen.codeplex.com/license

using System;
using System.Collections.Generic;
using System.Text;

namespace Walkmen.Util
{
    public sealed class ByteUtils
    {
        private ByteUtils()
        {
        }

        public static int IndexOf(byte[] array, byte[] pattern, int offset)
        {
            int success = 0;
            for (int i = offset; i < array.Length; i++)
            {
                if (array[i] == pattern[success])
                {
                    success++;
                }
                else
                {
                    success = 0;
                }

                if (pattern.Length == success)
                {
                    return i - pattern.Length + 1;
                }
            }
            return -1;
        }

    }
}

   
    
    
    
    
  








Related examples in the same category

1.An int, a short, and a float are included in a mathematical expression giving a float result.
2.Use byteUse byte
3.Format byte with X4
4.Read short from byte array
5.Write short value to byte array
6.Read Int 24 from byte array
7.Read int 32 from byte array
8.Write int 32 to byte array
9.Convert int to byte
10.Convert double to byte
11.Using Convert.ToByte to convert value to byte
12.Parse string to byte and catch the OverflowException and FormatException
13.Parse hexadecimal number to byte decimal
14.byte default format and leading zeros format
15.Format byte value to its hexadecimal form
16.Convert byte value to its base 2(Binary), base 8(Octal) and base 16(Hex) forms
17.Byte value binary and operation
18.byte hexadecimal literal
19.Byte.MaxValue, Byte.MinValue
20.Parse string with a culture-specific format to byte with IFormatProvider
21.Parse byte value with trailing sign or leading sign
22.Converts Byte to string with the culture-specific formatting information.
23.byte value standard string format
24.Format a byte value to string with culture-specific formatting information.
25.Tries to parse string to Byte
26.Parse string to byte with number style setting
27.Convert Bytes To String
28.Count Non Zero Bytes
29.Get Unsigned Byte Value
30.Convert Byte to Short
31.Convert Byte to Integer
32.Get Compressed Int Size
33.Compress Int