HtmlPurifier:删除不明确的空白?

发布于 2024-10-16 07:28:13 字数 325 浏览 4 评论 0原文

是否可以使用 HTMLPurifier 从包含 html 的字符串中删除不明确的空格?我在文档中找不到任何相关内容。如果存在其他方法,我也持开放态度。

输入示例:

    Test Line1
<p>
    Test Line2</p>
<p>
    Line 3</p>

最佳输出:

Test Line1<p>Test Line2</p><p>Line 3</p>

谢谢!!!!!!

Is it possible to remove ambiguous whitespace from a string containing html with HTMLPurifier? I wasn't able to find anything relevant in the documentation. I'm also open to other methods if they exist.

Example Input:

    Test Line1
<p>
    Test Line2</p>
<p>
    Line 3</p>

Optimal Output:

Test Line1<p>Test Line2</p><p>Line 3</p>

Thanks!!!!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柒夜笙歌凉 2024-10-23 07:28:13

正则表达式有帮助吗?

$text = preg_replace('/\s+/u', '', $text)

Can regular expression help?

$text = preg_replace('/\s+/u', '', $text)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文