使用正则表达式替换 Pre 标记内的 Html

发布于 2024-10-17 19:13:19 字数 284 浏览 2 评论 0原文

如何替换 pre 标签内的 Html?我更喜欢使用正则表达式来做到这一点

<html>
<head></head>
<body>
<div>
<pre>

    <html>
    <body>
    -----> hello! ----< 
    </body>
    </html

</pre>
</div>
</body>

How can I replace Html inside pre tag? I would prefer to do that with Regex

<html>
<head></head>
<body>
<div>
<pre>

    <html>
    <body>
    -----> hello! ----< 
    </body>
    </html

</pre>
</div>
</body>

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

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

发布评论

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

评论(2

我为君王 2024-10-24 19:13:20

编辑:正如另一个答案所示,正则表达式不完全支持 HTML 或 XHTML,因此您最好使用 HTML 解析器。不过,我将我的答案留在这里供参考。

您想用什么替换预标记内的内容?

我不熟悉特定的 C# 语法,但如果 C# 使用 Perl 风格的正则表达式,以下 PHP 代码片段可能会有所帮助。下面的代码将用字符串“(pre tag content was here)”替换前置标签内的内容(刚刚使用命令行 PHP 客户端进行了测试):

<?php
$html = "<html><head></head><body><div><pre class=\"some-css-class\">
         <html><body>
         -----> hello! ----< 
         </body></html
         </pre></div></body>"; // Compacting things here, for brevity

$newHTML = preg_replace("/(.*?)<pre[^<>]*>(.*?)<\/pre>(.*)/Us", "$1(pre tag content was here)$3", $html);
echo $newHTML;
?>

? 标记是为了进行匹配非贪婪(在第一次出现之后停止),以及 mU 修饰符指定“Unicode字符支持”和“单行支持”。后者对于使 . 也匹配换行符很重要。 [^<>]* 部分用于支持 pre 标记中的属性,例如

 (它将匹配除 <> 之外的任意数量的字符

更新:Martinho Fernandes 在下面的评论中,上述正则表达式的 C# 语法应该类似于:

new Regex(@"(.*?)<pre[^<>]*>(.*?)<\/pre>(.*)", RegexOptions.SingleLine)

EDIT: As indicated by another answer, regex does not support HTML or XHTML completely, and so you will be better off using an HTML parser instead. I'm leaving my answer here for reference though.

What do you want to replace the content inside the pre-tags with?

I'm not familiar with the specific C# syntax, but provided C# uses Perl-style regexes, the following PHP-snippet might be helpful. The code below will replace the content inside the pre-tags with the string "(pre tag content was here)" (just tested with the command line PHP client):

<?php
$html = "<html><head></head><body><div><pre class=\"some-css-class\">
         <html><body>
         -----> hello! ----< 
         </body></html
         </pre></div></body>"; // Compacting things here, for brevity

$newHTML = preg_replace("/(.*?)<pre[^<>]*>(.*?)<\/pre>(.*)/Us", "$1(pre tag content was here)$3", $html);
echo $newHTML;
?>

The ? mark is to make the matching non-greedy (stop at first occurence of what comes after), and the mU modifiers specifies "Unicode-character-support" and "single-line support". The latter is important to make . match newlines also. The [^<>]* part is for supporting attributes in the pre tag, such as <pre class="some-css-class"> (it will match any number of characters except for < or >.

UPDATE: As indicated by Martinho Fernandes in the comments below, the C# syntax for the above regex should be something like:

new Regex(@"(.*?)<pre[^<>]*>(.*?)<\/pre>(.*)", RegexOptions.SingleLine)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文