gpt4 book ai didi

ios - 用于将 URL 与视频 ID 匹配的正则表达式

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:27:53 25 4
gpt4 key购买 nike

我正在尝试制作一个 iOS 快捷方式,让我在新标签页中同时打开所有网站视频链接,为此我需要一个 RegEx。

本网站的视频链接如下所示:

https://m.worldstarhiphop.com/apple/video.php?v=wshhn5icmk9cKSyh9A17    
https://m.worldstarhiphop.com/apple/video.php?v=wshhc8Ew271C2BZE0l31

到目前为止我有这个:

^(?!image$).*(worldstarhiphop.com/apple/video)

因为我不希望快捷方式打开所有图片链接而只打开视频链接。

最佳答案

我已将多个捕获组添加到 this expression易于修改/更改和理解:

^((https?:\/\/.*)(worldstarhiphop.com)((\/apple\/video.php\?v=)|\/videos\/video.php\?v=)([A-Za-z0-9]{20}))

我没有使用 $ 关闭右侧,如果您愿意,可以这样做。

您希望匹配的 URL 有两个移动版本和网络版本,为了以防万一,我已经添加了各种协议(protocol)。如果不需要,您可以将其删除。

enter image description here

正则表达式描述图

图表可视化它是如何工作的,您可能想测试此 link 中的其他表达式:

enter image description here

基本性能测试

此 JavaScript 片段返回 100 万次 for 循环的运行时间以提高性能。

const repeat = 1000000;
const start = Date.now();

for (var i = repeat; i >= 0; i--) {
const string = 'https://m.worldstarhiphop.com/apple/video.php?v=wshhc8Ew271C2BZE0l31';
const regex = /^((https?:\/\/.*)(worldstarhiphop.com)((\/apple\/video.php\?v=)|\/videos\/video.php\?v=)([A-Za-z0-9]{20}))/gm;
var match = string.replace(regex, "\nGroup #1: $1\nGroup #2: $2 \nGroup #3: $3 \nGroup #4: $4\nGroup #6: $6 \n");
}

const end = Date.now() - start;
console.log("YAAAY! \"" + match + "\" is a match 💚💚💚 ");
console.log(end / 1000 + " is the runtime of " + repeat + " times benchmark test. 😳 ");

关于ios - 用于将 URL 与视频 ID 匹配的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56083747/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com