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
Advertisement
Answer
You can use escape character for this as follow:
JavaScript
x
9
1
const str = '[https://thisisurl.com] This is Name'
2
3
const regex = /[(.*)] (.*)/i
4
const matchResult = str.match(regex)
5
6
const url = matchResult[1]
7
const name = matchResult[2]
8
9
console.log(`url: "${url}" name: "${name}"`)