I’m trying to write a regular expression that needs to return every tag name, attribute name, and attribute value
Here is the code example
Hello, My name is Jack, This is my selfie:
[img id='4' src="imageurl"]
Below is the quick-link to my profile
[profile username='jackisbest']
I need to get any text enclosed in [ ]
Also I need javascript regex to parse them and match them this way
> Match 1: img
> Match 2: id='4'
Group 1: id
Group 2: 4
> Match 3: src="imageurl"
Group 1: src
Group 2: imageurl
This is the regex I am using, but it can only match attributes and value
(S+)=["']?((?:.(?!["']?s+(?:S+)=|[>"']))+.)["']
Thanks!!