Skip to content

Instantly share code, notes, and snippets.

@Jeve-Stobs
Created October 16, 2021 13:59
Show Gist options
  • Save Jeve-Stobs/370220da1aac7b9a0098231924ef3f97 to your computer and use it in GitHub Desktop.
Save Jeve-Stobs/370220da1aac7b9a0098231924ef3f97 to your computer and use it in GitHub Desktop.
YouTube url parser
function youtube_parser(url) {
var regExp =
/^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#&?]*).*/;
var match = url.match(regExp);
return match && match[7].length == 11 ? match[7] : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment