PHP正则排除条件替换,在线等~~~
$str='<ahref="#">test1</a>thisisatestthisisatest2<ahref="#">test2</a>';想将上面内容中第一个test...
$str = '
<a href="#">test1</a>
this is a test
this is a test2
<a href="#">test2</a>
';
想将上面内容中第一个test替换为<b>test</b>
但是,这个test不能属于a标签内!
如何替换?谢谢~ 展开
<a href="#">test1</a>
this is a test
this is a test2
<a href="#">test2</a>
';
想将上面内容中第一个test替换为<b>test</b>
但是,这个test不能属于a标签内!
如何替换?谢谢~ 展开
2个回答
展开全部
echo preg_replace('/(<\/a>.*?)(test)/s','$1<b>$2</b>',$str);
追问
不错,但为什么扩展性不强了,我把原内容里的第一个a标签删掉就匹配不到了,你的正则里面明明有个?号呀,不是可以不存在的吗?另外我再添加一条a却匹配的很好,再帮菜鸟俺看一下^_^
$str = '
this is a test
this is a test2
test2
';
追答
preg_replace('/(test)([^<]+)(?!<\/a>)/s','<b>$1</b>$2',$str,1);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询