gpt4 book ai didi

javascript - 通过 javascript 正则表达式验证 SoundCloud URL

转载 作者:数据小太阳 更新时间:2023-10-29 04:59:16 27 4
gpt4 key购买 nike

我有 2 个来自 soundcloud 的 url,我想在 .com/(or).sc/之后获取所有内容,我根本不懂正则表达式,我可以进行 javascript 匹配/替换,唯一的问题是http 与 https

https://soundcloud.com/ilyao/lyao-lj-mtx-and-lj-mtxs-hair

http://snd.sc/1cvgIjv

如有任何帮助,我们将不胜感激。

这是我得到的,不确定如何进行替换的 https,或者这是否是解决此问题的最佳方法...

function getSoundCloudInfo(url){
return url.replace("https://soundcloud.com/", "").replace("http://snd.sc/", "");
}

最佳答案

function getSoundCloudInfo(url){
var regexp = /^https?:\/\/(soundcloud\.com|snd\.sc)\/(.*)$/;
return url.match(regexp) && url.match(regexp)[2]
}

关于javascript - 通过 javascript 正则表达式验证 SoundCloud URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18227087/

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