使用php querypath删除html字符串顶部和底部的空标签

时间:2012-11-17 14:21:21

标签: php html-parsing querypath

我正在使用php Querypath,我正在尝试从html字符串中删除html顶部和底部的所有空标记。例如:

      <div>&nbsp;</div>
      <div>&nbsp;</div>
      <div>I want remove empty div tag on top and bottom</div>
      <div>&nbsp;</div>
      <div>other content</div>
      <div>&nbsp;</div>
      <div>&nbsp;</div>

使用php querypath我想要改成:

      <div>I want remove empty div tag on top and bottom</div>
      <div>&nbsp;</div>
      <div>other content</div>

我该怎么办?

1 个答案:

答案 0 :(得分:0)

使用replace string将div替换为空格。

str_replace(find,replace,from);

因此,您可以使用<div>&nbsp;</div>查找并将其替换为代码中的""