Im using this. specifing boundaries <a and /a
var regex:RegExp = /<\b([a]) \w+ \<\/([a])\b>/g;
var test:String = "some text that starts and <a href="abc.com">Click Here </a>ends with same";
var a:Array = test.match(regex);
My problem is it is only find single word between a tag if we have more words or special characters in between it will not match. can anyone Solve it?
RegEx Expression:
Heading1
i have heading tag
you can put anchor tag in expression and try it might help. I havent tested i used this long time ago.