从给定字符串中提取 url 和 name 属性
输入字符串的格式为>>
[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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用转义字符
\
来实现此目的,如下所示:You can use escape character
\
for this as follow: