检查给定的代码是否正确?通过正则表达式检查(PHP)
我提供反向链接销售服务,但在检查发布商网站上的已售链接时遇到问题。例如,我想检查
<a href="http://www.example.com" title="example">example</a>
我可以检查这一点,但有些用户添加了 target="_blank"
其中一些 target="_new"
...代码的结构正在改变网站管理员。
我想用正则表达式检查代码。正则表达式应检查 href=""
、title=""
以及 a 标记之间的内容(此处
) 。
I'm providing a backlink selling service, but I have problem while checking the sold links on publisher web sites. For example I want to check
<a href="http://www.example.com" title="example">example</a>
I can check this but some users add target="_blank"
some of them target="_new"
... The code's structure is changing by the webmaster.
I want to check the codes with regex. The Regex should check href=""
, title=""
and between the a tags (<a>here</a>
).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我给你做了这个:
输出:
I've made you this:
output:
使用这个解析器而不是正则表达式,这很酷,但不适合这项工作。
Use this parser instead of regular expressions, which are cool but the wrong tool for this job.