Greetings
My apologies if I picked the wrong forum to ask this. My script is scanning my reciprocal url's daily with the following regex values:
<a.*?href=["'].*?www.example.com/?["'].*?>.*?</a>
How would I have to set up the code to:
- Allow any anchor tag
- Allow any title tag
- NOT ALLOW rel="nofollow" as a match?
Currently my code is matching the url, and allows for the rest anything ... including the rel="nofollow" tag to the links.
Could anyone give an example, or hint to a possible solution so that IF rel="nofollow" is applied to a reciprocal URL, that it will not match anymore?