Skip to content

Instantly share code, notes, and snippets.

@johnmurch
Created September 11, 2020 01:31
Show Gist options
  • Save johnmurch/b74763dd9193d812523f1cfe6b665318 to your computer and use it in GitHub Desktop.
Save johnmurch/b74763dd9193d812523f1cfe6b665318 to your computer and use it in GitHub Desktop.
Is URL English?
let url = "https://test.com/現役軍人轉公職-警察有哪些方法-補助5萬如何申請-4db7c0fd81b0"
const english = /^(http:\/\/www\.|https:\/\/www\.|http:\/\/|https:\/\/)?^[ -~]+$/;
if (english.test(url)) {
console.log("URL IS ENGLISH-most likely")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment