删除ckeditor中空格的强标记

时间:2017-03-30 13:28:58

标签: php html5 ckeditor

如何删除单击粗体并为文本提供空格后创建的空白空间的强标记 例如 : 如果我给出10个空格,那么它就像在强烈的标签中占据空间一样

<html>((<strong>  `like_so_&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;`  </strong>)) </html>

我想为我的空间消除那个强大的标签

{{1}}

1 个答案:

答案 0 :(得分:0)

使用正则表达式

$output = preg_replace('~<strong>((&nbsp;|\s)*)</strong>~', '$1', $input);

它会删除包含任意数量的&nbsp;或白色字符的强标记