Skip to content

Instantly share code, notes, and snippets.

@interisti
Last active December 7, 2016 14:37
Show Gist options
  • Save interisti/3464b5bbcbada6b095766f4006b35566 to your computer and use it in GitHub Desktop.
Save interisti/3464b5bbcbada6b095766f4006b35566 to your computer and use it in GitHub Desktop.
Regex

Match unicode chars:

[^\u0000-\u007F]

Match nonunicode chars:

[!^\u0000-\u007F]

Match single english or non-english letter or number, including _ :

([^\x00-\x7F]|\w)

Match single english or non-english letter or number, excluding _ :

([^\x00-\x7F]|[a-zA-Z0-9])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment