Created
September 11, 2020 01:31
-
-
Save johnmurch/b74763dd9193d812523f1cfe6b665318 to your computer and use it in GitHub Desktop.
Is URL English?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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