从给定字符串中提取 url 和 name 属性

发布于 2025-01-18 06:43:02 字数 177 浏览 0 评论 0原文

输入字符串的格式为>>

[https://thisisurl.com] 这是名称,

如何从中提取“https://thisisurl.com”和“这是 url”属性

,其中 url 属性在方括号 [???] 和剩余文本中给出是名称属性

我想要一个可以为我完成此任务的函数

the format of the input string is >>

[https://thisisurl.com] This is Name

how to extract "https://thisisurl.com", and "This is url" attributes from it

where the url attribute is given in brackets [???] and remaining text is the name attribute

I want a function that can do this task for me

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

薯片软お妹 2025-01-25 06:43:02

您可以使用转义字符 \ 来实现此目的,如下所示:

const str = '[https://thisisurl.com] This is Name'

const regex = /\[(.*)\] (.*)/i
const matchResult = str.match(regex)

const url = matchResult[1]
const name = matchResult[2]

console.log(`url: "${url}" name: "${name}"`)

You can use escape character \ for this as follow:

const str = '[https://thisisurl.com] This is Name'

const regex = /\[(.*)\] (.*)/i
const matchResult = str.match(regex)

const url = matchResult[1]
const name = matchResult[2]

console.log(`url: "${url}" name: "${name}"`)

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