How do I remove all non-ASCII characters with regex and Notepad++?

This expression will search for non-ASCII values:

[^\x00-\x7F]+

Tick off ‘Search Mode = Regular expression’, and click Find Next.

Source: Regex any ASCII character

Leave a Comment