gpt4 book ai didi

c# - 如何在C#上获取字符串的中心部分

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

我只需要使用 C# 的 Rocky44 的中心字符串

Hi <a href="http://example.com/index.php?action=profile"><span>Rocky44</span></a>

我试过some split的方法还是不行

string[] result = temp.Split(new string[] { "<a href=" + "http://example.com/index.php?action=profile" + "><span>" , "</span></a>" }, StringSplitOptions.RemoveEmptyEntries); 

示例:

Hi <a href="http://example.com/index.php?action=profile"><span>Rocky44</span></a>

收件人:

Rocky44

最佳答案

使用 html 解析器。我将使用 HtmlAgilityPack 给出一个例子

string html = @"Hi <a href=""http://example.com/index.php?action=profile""><span>Rocky44</span></a>";
var doc = new HtmlAgilityPack.HtmlDocument();
doc.LoadHtml(html);
var text = doc.DocumentNode.SelectSingleNode("//span").InnerText;

关于c# - 如何在C#上获取字符串的中心部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16842611/

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