Reputation: 305
How can I remove all characters that have a specific decimal ASCII value?
Can Notepad++ do that? Otherwise, is there another software I can use?
Thank you
Upvotes: 0
Views: 697
Reputation: 2259
In Notepad++ you can use \x41
to find A
. Use \x
to match escaped hexadecimal codes.
For this, you need to tick Regular Expression
and Match Case
options in the Replace window.
Upvotes: 1