I need a regex that will give me the string inside an href tag
For example i need to extract NAME in the following:
<a href="Somedomain1.com">NAME</a>
And the link inside href is not constant
My regex
'/<a href="(.+)">/'
it give me the link inside the href only. and I don't know how to get the name of a url
Thank you in advance