Ale
Ale

Reputation: 305

How to remove characters with a specific ASCII value using a text editor?

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

Answers (1)

sameerkn
sameerkn

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

Related Questions