Tech Notes
Tech Notes |
FuzRegEx: how to find ascii characters?
To find 1 or 2 digit hex values, use \xhex
Example
To find the escape character (which is decimal 27, hex 1B) and remove it, use the following in FuzRegex (www.fuzregex.com):
Find: \x1B Replace: ^$
For low ascii use set notation [\x00-\x1F] and for high ascii use [\x7F-\xFF].
Copyright © 1995-2010 HREF Tools Corp. All Rights Reserved Worldwide. 01-Sep-2007.
Running DynHelp.exe v1.2.0.6 on WebHub-v2.125 built by D14
Calc time: 125 ms
Running DynHelp.exe v1.2.0.6 on WebHub-v2.125 built by D14
Calc time: 125 ms

