C# 去所有 html标签的代码|去除html标签代码
时间: 2024-02-27 20:53:31 浏览: 143
C# 去除所有HTML代码
4星 · 用户满意度95%
以下是C#中去除HTML标签的代码示例:
```
using System.Text.RegularExpressions;
// 去除HTML标签的方法
public static string StripHTML(string input)
{
return Regex.Replace(input, "<.*?>", string.Empty);
}
// 示例用法
string htmlString = "<p>This is some <b>bold</b> text.</p>";
string strippedString = StripHTML(htmlString);
Console.WriteLine(strippedString); // Output: "This is some bold text."
```
这里使用了正则表达式 `<.*?>` 来匹配HTML标签,并将其替换为空字符串。你可以将 `StripHTML` 方法嵌入到你的代码中,并将需要去除HTML标签的字符串作为参数传递给它。
阅读全文