用于提取 Youtube 视频 ID 的 JavaScript 正则表达式
以下代码用于获取 Youtube 视频 ID,以便获取缩略图。
第一个正则表达式背后的原因是什么?它到底在做什么?它似乎返回至少两个结果。另外,两者可以结合起来吗?
else if(url.match("youtube.com/")){
var vid;
var results;
//http://www.youtube.com/watch?v=GItD10Joaa0
results = url.match("[\\?&]v=([^&#]*)");
vid = ( results === null ) ? url : results[1];
return "http://img.youtube.com/vi/"+vid+"/2.jpg";
} else if( url.match("youtu.be/") ) {
var vid;
var results;
// http://youtu.be/5uxd-521uus?hd=1
// results = url.match("[^http://youtu.be/](.*)[^?hd=1]");
// Corrected
results = url.match(""^http://youtu.be/(.*)(?=hd=1)");
//alert(results[0]);
vid = ( results === null ) ? url : results[0];
return "http://img.youtube.com/vi/"+vid+"/2.jpg";
}
The following code is used to get Youtube video ids in order to get a thumbnail image.
What is the reasoning behind the first regular expression and what is it doing exactly? It appears to be returning at least two results. Also, could the two be combined?
else if(url.match("youtube.com/")){
var vid;
var results;
//http://www.youtube.com/watch?v=GItD10Joaa0
results = url.match("[\\?&]v=([^]*)");
vid = ( results === null ) ? url : results[1];
return "http://img.youtube.com/vi/"+vid+"/2.jpg";
} else if( url.match("youtu.be/") ) {
var vid;
var results;
// http://youtu.be/5uxd-521uus?hd=1
// results = url.match("[^http://youtu.be/](.*)[^?hd=1]");
// Corrected
results = url.match(""^http://youtu.be/(.*)(?=hd=1)");
//alert(results[0]);
vid = ( results === null ) ? url : results[0];
return "http://img.youtube.com/vi/"+vid+"/2.jpg";
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
解释(从 JavaScript 字符串简化为正则表达式之后):
第二个正则表达式
[^http://youtu.be/](.*)[^?hd=1]
是非常错误的。它可能应该读
explained (after reduction from a JavaScript string to a regex):
The second regex
[^http://youtu.be/](.*)[^?hd=1]
is very wrong.It probably should read
如果您指的是...
那么它匹配文字
\
、?
或&
后跟文字v=< /code> 后跟一个捕获组,该捕获组捕获 0 个或多个非
&
或#
的任何字符。If you are referring to...
Then it is matching a literal
\
,?
or&
followed by literalv=
followed by a capturing group which is capturing 0 or more of any characters that are not&
or#
.当 url 类似于“youtube.com/”时,第一个正则表达式正在检查“?v=GItD10Joaa0”
第二个是当网址为“http://www.youtube.com/index?feature=youtu.be”时检查“www.youtube.com/index?feature=youtu.be”,
因此您可以简单地使用第一个正则表达式,如果你想从第一个网址获取 id,同样:)
The 1st regex is checking for "?v=GItD10Joaa0" when the url is something like "youtube.com/"
and the 2nd is checking for "www.youtube.com/index?feature=youtu.be" when the url is "http://www.youtube.com/index?feature=youtu.be"
So you can simply use the 1st regex if you want to get ids from 1st url and likewise :)
好吧,我做了一些钓鱼并发现了这个正则表达式。它应该适合上述目的。
来自: C# 正则表达式获取视频 ID来自 youtube 和 vimeo 的网址
以及:http://forrst.com/posts/Automatic_YouTube_Thumbnails_with_PHP_and_Regex-乌塔
Ok, I did some fishing around and came accross this regex. It should suit the purpose described above.
From: C# regex to get video id from youtube and vimeo by url
And: http://forrst.com/posts/Automatic_YouTube_Thumbnails_with_PHP_and_Regex-uta