Skip to content

Instantly share code, notes, and snippets.

@krebernisak
Created October 28, 2013 10:50
Show Gist options
  • Save krebernisak/7194858 to your computer and use it in GitHub Desktop.
Save krebernisak/7194858 to your computer and use it in GitHub Desktop.
function youtube_parser(url) {
var regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#\&\?]*).*/;
var match = url.match(regExp);
if (match && match[7].length === 11) {
return match[7];
} else {
alert("Url incorrecta");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment