How can I match a match a null byte (0x00) in the Visual Studio binary editor with a find using a re
Posted
by Paul K
on Stack Overflow
See other posts from Stack Overflow
or by Paul K
Published on 2010-05-13T03:05:50Z
Indexed on
2010/05/13
3:14 UTC
Read the original article
Hit count: 223
Open a file in the Visual Studio binary editor that contains a null byte (0x00), then use the Quick Find feature (Ctrl +F) to find null bytes.
I would have thought I could use a regular expression such as \x00 to match null bytes but it doesn't work. Searching for any other hex value using this method works fine.
Is this a VS bug, 'feature', or am I just missing something? Is there a work around?
© Stack Overflow or respective owner