preg_replace() 有多行
我在使用 preg_replace() 时又遇到了麻烦。我非常需要一本关于 preg_replace() 的书。
我的目的是替换 作者
与 Level1
有什么想法吗? 作者
被其他 HTML 元素包裹:
<td align="center">
<a onclick="return listItemTask('cb1','block')" href="javascript:void(0);">
<img width="16" height="16" border="0" alt="Blocked" src="images/tick.png">
</a>
</td>
<td>
Author
</td>
I have trouble again with preg_replace(). I terribly need a book for preg_replace().
My intention is to replace <td> author </td>
with <td> Level1 </td>
Any ideas? The <td> author </td>
is wrapped with other HTML elements:
<td align="center">
<a onclick="return listItemTask('cb1','block')" href="javascript:void(0);">
<img width="16" height="16" border="0" alt="Blocked" src="images/tick.png">
</a>
</td>
<td>
Author
</td>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 Perl 正则表达式手册页:(或 PHP PCRE 文档)
From Perl regular expression manual page: (or PHP PCRE docs)
少量代码永远不会有什么坏处...
请注意
\s
修饰符< /a> 用于允许.
匹配换行符
。A little code never hurts...
Do notice the
\s
modifier used to allow.
to matchnewlines
.