向高手求正则 表达式,该怎么处理

WBOY
Release: 2016-06-13 13:29:14
Original
904 people have browsed it

向高手求正则 表达式
我要实现的功能是 可以多个正则来实现:
最主要的是 发帖的时候 过滤掉 a标签下内 别的网站的域名直接替换成空.(如果是本自己网站的链接 就不过滤了,就是要排除本站).
同时需要实现以下功能(可以多次正则实现):
1.替换 a标签下的 title 里的内容为空.
2.替换 a标签下的 alt 里的内容为空 同上.
3.替换把所有的 标签(图片标签) 外层加一个a标签

谢谢

------解决方案--------------------
$s= preg_replace('/(]*title=")(.*?)("[^>]*>)/is','$1$3',$s); //替换title

$s= preg_replace('/(
]*alt=")(.*?)("[^>]*>)/is','$1$3',$s); //替换alt
$s= preg_replace('/ 向高手求正则 表达式,该怎么处理 ]*>/is','
\0',$s); //给图片加链接

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template