Regexp

From Anthony Pastor Wiki Notes - Verba volant, scripta manent
Revision as of 10:19, 23 June 2016 by 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-...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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]