Search file for binary pattern

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • junkmauler@gmail.com

    #1

    Search file for binary pattern

    I need a pre-made class (this is way over my head.. I can imagine the
    pseudo code but cant implement it myself) that can search a file for a
    specified binary pattern.

    Actually what I really need is a way to read in a buffer (say 4k) and
    search that buffer for multiple binary patterns, which would require a
    smart sliding window to search a large amount of patterns in a short
    amount of time.

    Anyone have any suggestions?

  • Ken Tucker [MVP]

    #2
    Re: Search file for binary pattern

    Hi,

    Regual expressions are great for searching for patterns

    http://msdn.microsoft.com/library/de...xpressions.asp

    Ken
    -------------------------
    <junkmauler@gma il.com> wrote in message
    news:1118560609 .170313.222930@ g44g2000cwa.goo glegroups.com.. .
    I need a pre-made class (this is way over my head.. I can imagine the
    pseudo code but cant implement it myself) that can search a file for a
    specified binary pattern.

    Actually what I really need is a way to read in a buffer (say 4k) and
    search that buffer for multiple binary patterns, which would require a
    smart sliding window to search a large amount of patterns in a short
    amount of time.

    Anyone have any suggestions?


    Comment

    Working...