JSFiddle - React, Tailwind, and code Playground

by ponyspy

JavaScript

function youtubeId(url) {
  return (url.match(/^(?:https?:\/\/)?(?:www\.)?(?:youtu\.be\/|youtube\.com\/(?:embed\/|v\/|watch\?v=|watch\?.+&v=))((\w|-){11})(?:\S+)?$/)) ? RegExp.$1 : false;
}

alert(youtubeId('https://youtu.be/toBL9_VVDbE'))