使用正则表达式替换 Pre 标记内的 Html
如何替换 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
RegEx 匹配开放标记(XHTML 自包含标记除外) 费尔南德斯
谢谢马蒂尼奥·
RegEx match open tags except XHTML self-contained tags
Thank you martinho fernandes
编辑:正如另一个答案所示,正则表达式不完全支持 HTML 或 XHTML,因此您最好使用 HTML 解析器。不过,我将我的答案留在这里供参考。
您想用什么替换预标记内的内容?
我不熟悉特定的 C# 语法,但如果 C# 使用 Perl 风格的正则表达式,以下 PHP 代码片段可能会有所帮助。下面的代码将用字符串“(pre tag content was here)”替换前置标签内的内容(刚刚使用命令行 PHP 客户端进行了测试):
?
标记是为了进行匹配非贪婪(在第一次出现之后停止),以及mU
修饰符指定“Unicode字符支持”和“单行支持”。后者对于使.
也匹配换行符很重要。[^<>]*
部分用于支持 pre 标记中的属性,例如更新: 如 Martinho Fernandes 在下面的评论中,上述正则表达式的 C# 语法应该类似于:
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):
The
?
mark is to make the matching non-greedy (stop at first occurence of what comes after), and themU
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: