| Author |
Message |
   
Ron Cufley
Username: roncufley
Registered: N/A
| | Posted on Wednesday, Jun 13, 2007 - 11:29: | |
I would like to scan a disk looking for any hex value that is not x'00' is this possible? |
   
Björn Ganster
Username: admin4
Registered: 3-2004
| | Posted on Wednesday, Jun 13, 2007 - 12:36: | |
You could try the following GREP expression, but it will likely lead to very many search hits: [\x01-\xff] |
   
Ron Cufley
Username: roncufley
Registered: N/A
| | Posted on Wednesday, Jun 13, 2007 - 13:56: | |
Thanks, that is exactly what I wanted. I needed to be able to show that a disk had been cleared. |
|