Regexp: Difference between revisions
Jump to navigation
Jump to search
Anthoanthop (talk | contribs) (Created page with "=Find all non-ASCII characters= You can select all non-ASCII (code point > 128) characters. This regex find should be enough for you: <syntaxhighlight lang="bash"> [^\x00-...") |
Anthoanthop (talk | contribs) No edit summary |
||
Line 7: | Line 7: | ||
[^\x00-\x7F] | [^\x00-\x7F] | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Source: http://stackoverflow.com/a/13995175 |
Latest revision as of 10:19, 23 June 2016
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]