gpt4 book ai didi

c# - 如何在没有模式的情况下解析 XML?

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

我收到了这段 xml:

<hash>
<base>XPM</base>
<alt>BTC</alt>
<value type="decimal">0.00341</value>
</hash>

如何获取 base、alt 和 value 标签的值?我还想知道 type 属性是小数。

最佳答案

您可以使用 LINQ2XML

XElement node=XElement.Parse(input);
node.Element("base").Value;
node.Element("alt").Value;
node.Element("value").Attributes("type").Value;//attribute value
node.Element("value").Value;

关于c# - 如何在没有模式的情况下解析 XML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20681573/

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