Regexp
Jump to navigation
Jump to search
Find all non-ASCII characters
You can select all non-ASCII (code point > 128) characters. This regex find should be enough for you:
[^\x00-\x7F]
You can select all non-ASCII (code point > 128) characters. This regex find should be enough for you:
[^\x00-\x7F]