删除 br 标签两侧的空格
我想知道如何删除
标签两侧存在的空格
$str = 'remov e <br /><br />from<br /><br /> r<br />'
我尝试了以下操作,但无法使其完全正常工作。
preg_replace('/[\s]<br \/>/', '', $str );
Id like to know how you remove a space if it exists on either side of a <br />
tag
$str = 'remov e <br /><br />from<br /><br /> r<br />'
i tryed the following but i cant get it fully working.
preg_replace('/[\s]<br \/>/', '', $str );
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请记住,
\s
匹配任何空白,包括制表符和换行符,而不仅仅是空格chr(20)
。Keep in mind that
\s
matches any white-space, including tabs and newlines - not just spaceschr(20)
.