Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save khripunovpp/7e118439a7087fda04ef87e464d4da5d to your computer and use it in GitHub Desktop.
Save khripunovpp/7e118439a7087fda04ef87e464d4da5d to your computer and use it in GitHub Desktop.
arabic string detection
var arabic = /[\u0600-\u06FF]/;
var string = 'عربية‎'; // some Arabic string from Wikipedia
alert(arabic.test(string)); // displays true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment