gpt4 book ai didi

c# - 如何去除 C# 代码中除
之外的所有 html 标签?

转载 作者:可可西里 更新时间:2023-11-01 12:50:10 24 4
gpt4 key购买 nike

我想做的是删除除<br> 之外的所有html 标签。标签。

我做了一个例子:

public string Strip(string text)
{
return Regex.Replace(text, @”<(.|\n)*?>”, string.Empty);
}

但是这个删除了所有。

感谢任何形式的帮助。

最佳答案

试试这个正则表达式

return Regex.Replace(text, @”<(?!br[\x20/>])[^<>]+>”, string.Empty);

但我认为 html 解析器可能更适合这些任务。

关于c# - 如何去除 C# 代码中除 <br> 之外的所有 html 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17366395/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com