in reply to Search hex string in vary large binary file

BTW: index may be a good alternative to regex

I agree with LanX: You're searching for a specific sequence, not a pattern. No need to fire up the regex engine to search for something that isn't a pattern. index is a good start.

I don't know anything about the MV4 file format, but wouldn't the string you're searching for be in a header near the beginning of the file? That may also simplify your search.


Dave

  • Comment on Re: Search hex string in vary large binary file