regex pattern(javascript and pcre)
<a href="(?<!#).*".*>(.*)<\/a>
This pattern should not select any html anchor tag of which the href attribute starts with a # symbol. But it matches the following code
<a href="#team">Team</a>
What am I doing wrong here?