gpt4 book ai didi

c# - 在c#中解析一个字符串

转载 作者:数据小太阳 更新时间:2023-10-29 01:59:36 27 4
gpt4 key购买 nike

假设有一个如下所示的 xml 文件:

<Instances>
<Bits = "16" XCoord = "64" YCoord = "64" ZCoord = "64" FileType="jpeg" Location="C:\Series1\Image1.jpg" ImageNumber = "1"/>
<Bits = "16" XCoord = "64" YCoord = "64" ZCoord = "64" FileType="jpeg" Location="C:\Series1\Image2.jpg" ImageNumber = "2"/>
<Bits = "16" XCoord = "64" YCoord = "64" ZCoord = "64" FileType="jpeg" Location="C:\Series1\Image3.jpg" ImageNumber = "3"/>
<Bits = "16" XCoord = "64" YCoord = "64" ZCoord = "64" FileType="jpeg" Location="C:\Series1\Image4.jpg" ImageNumber = "4"/>
<Bits = "16" XCoord = "64" YCoord = "64" ZCoord = "64" FileType="jpeg" Location="C:\Series1\Image5.jpg" ImageNumber = "5"/>
</Instances>

此 xml 文件作为字符串读取并传递给函数。此 xml 文件包含有关特定图像文件的信息。我想从此字符串中提取所有图像文件的位置。因此,无论提交的“位置”的值(value)是多少,我都需要收集所有这些值(value)。在 C# 中实现此目的的最佳方法是什么。

谢谢,

最佳答案

最简单的方法:将其解析为 XML(我建议使用 LINQ to XML),然后使用 XML API 添加信息。自己将其视为原始字符数据毫无意义。

示例:

XElement root = XElement.Parse(text);
List<string> images = root.Elements("Bits")
.Select(x => (string) x.Attribute("Location"))
.ToList();

(这将为任何不包含 Location 属性的 Bits 元素提供 null。)

关于c# - 在c#中解析一个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2929719/

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