Regexp: Difference between revisions

From Anthony Pastor Wiki Notes - Verba volant, scripta manent
Jump to navigation Jump to search
(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-...")
 
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]

Source: http://stackoverflow.com/a/13995175