gpt4 book ai didi

c# - REGEX 删除被 < pikes > 包围的字符串

转载 作者:太空宇宙 更新时间:2023-11-03 20:17:07 24 4
gpt4 key购买 nike

什么是 c# 正则表达式来替换开始和结束派克之间的所有文本/字符?

例如:

this is an <example> that <needs> to turn into

=> this is an that to turn into

最佳答案

我会使用像 HtmlAgilityPack 这样的 Html 解析器而不是正则表达式为此

string html = "this is an <example> that <needs> to turn into";
var doc = new HtmlAgilityPack.HtmlDocument();
doc.LoadHtml(html);
var text = doc.DocumentNode.InnerText;

但是如果你必须使用正则表达式

var text = Regex.Replace(html, @"\<.+\>", String.Empty);

关于c# - REGEX 删除被 < pikes > 包围的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16021219/

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