用于提取 Youtube 视频 ID 的 JavaScript 正则表达式

发布于 2024-11-02 03:10:43 字数 783 浏览 0 评论 0原文

以下代码用于获取 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

◇流星雨 2024-11-09 03:10:43
"[\\?&]v=([^&#]*)"

解释(从 JavaScript 字符串简化为正则表达式之后):

[\?&]   # Match a ? or a & (the backslash is unnecessary here!)
v=      # Match the literal text "v="
(       # Capture the following into backreference no. 1:
 [^&#]* # Zero or more characters except & or #
)       # End of capturing group.

第二个正则表达式 [^http://youtu.be/](.*)[^?hd=1] 是非常错误的。

它可能应该读

"^http://youtu.be/(.*)(?=hd=1)"
"[\\?&]v=([^&#]*)"

explained (after reduction from a JavaScript string to a regex):

[\?&]   # Match a ? or a & (the backslash is unnecessary here!)
v=      # Match the literal text "v="
(       # Capture the following into backreference no. 1:
 [^&#]* # Zero or more characters except & or #
)       # End of capturing group.

The second regex [^http://youtu.be/](.*)[^?hd=1] is very wrong.

It probably should read

"^http://youtu.be/(.*)(?=hd=1)"
り繁华旳梦境 2024-11-09 03:10:43

如果您指的是...

results = url.match("[\\?&]v=([^&#]*)");

那么它匹配文字 \?& 后跟文字 v=< /code> 后跟一个捕获组,该捕获组捕获 0 个或多个非 &# 的任何字符。

If you are referring to...

results = url.match("[\\?&]v=([^&#]*)");

Then it is matching a literal \, ? or & followed by literal v= followed by a capturing group which is capturing 0 or more of any characters that are not & or #.

亣腦蒛氧 2024-11-09 03:10:43

当 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 :)

仙气飘飘 2024-11-09 03:10:43

好吧,我做了一些钓鱼并发现了这个正则表达式。它应该适合上述目的。

youtu(?:\.be|be\.com)/(?:.*v(?:/|=)|(?:.*/)?)([a-zA-Z0-9-_]+)

来自: 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.

youtu(?:\.be|be\.com)/(?:.*v(?:/|=)|(?:.*/)?)([a-zA-Z0-9-_]+)

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文