如何使用jQuery从字符串解析URL?[duplicate]

fhg3lkii  于 2022-12-29  发布在  jQuery
关注(0)|答案(2)|浏览(105)
    • 此问题在此处已有答案**:

Javascript: extract URLs from string (inc. querystring) and return array(5个答案)
昨天关门了。
我希望从字符串中获取URL,如何使用jQuery实现?

    • 例如**
    • 来源:一月一日目标:**一月一日
    • 来源:一个月两个月一次目标:**一个月三个月一次
    • 来源:一个月四个月一次目标:**一个月五个月一次
    • 来源:**Hello https://www.youtube.com目标:https://www.youtube.com
    • 来源:**https://stackoverflow.com/74926284目标:https://stackoverflow.com/74926284
mccptt67

mccptt671#

您可以使用regex

const string = "BB http://www.twitter.com/ Good site"
const matches = string.match(/\b(http|https)?:\/\/\S+/gi)[0];
console.log(matches);
ovfsdjhp

ovfsdjhp2#

你可以从这里参考
字符串.原型. indexOf()
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf

var string = "Hello https://www.youtube.com";
var url = string.indexOf("https://");
var resurl = string.substring(url);
console.log(resurl);

相关问题