Skip to content

Instantly share code, notes, and snippets.

@KxNxT
Created April 16, 2014 08:19
Show Gist options
  • Save KxNxT/10831053 to your computer and use it in GitHub Desktop.
Save KxNxT/10831053 to your computer and use it in GitHub Desktop.
var str = "https://www.youtube.com/watch?v=cvj3-MZO9Tw&list=dddd";
document.getElementById('helloWorld').innerHTML = str.replace(/.*v=([\d\w\-]+).*/,"$1");
var str2 = "//www.youtube.com/embed/cvj3-MZO9Tw&list=dddd";
document.getElementById('helloWorld2').innerHTML = str2.replace(/.*embed\/([\d\w\-]+).*/,"$1");
@KxNxT
Copy link
Author

KxNxT commented Apr 16, 2014

2つめは必ずembed/の後に続くのかは不明

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment