使用此代码,我可以从以下XML文件中获取标题:
var xml = XElement.Load (@"C:\\test\\smartForm-customersMain.xml");
string title = xml.Element("title").Value;
但是如何让它更精确,例如“在smartForm元素之后获取第一个元素,例如:
//PSEUDO-CODE:
string title = xml.Element("smartForm").FirstChild("title");
XML:
<?xml version="1.0" encoding="utf-8" ?>
<smartForm idCode="customersMain">
<title>Customers Main222</title>
<description>Generic customer form.</description>
<area idCode="generalData" title="General Data">
<column>
<group>
<field idCode="anrede">
<label>Anrede</label>
</field>
<field idCode="firstName">
<label>First Name</label>
</field>
<field idCode="lastName">
<label>Last Name</label>
</field>
</group>
</column>
</area>
<area idCode="address" title="Address">
<column>
<group>
<field idCode="street">
<label>Street</label>
</field>
<field idCode="location">
<label>Location</label>
</field>
<field idCode="zipCode">
<label>Zip Code</label>
</field>
</group>
</column>
</area>
</smartForm>
答案 0 :(得分:5)
如果你不知道smartForm
是否是根元素但是仍然想要第一个这样的条目的标题文本,你可以使用:
xml.DescendantsAndSelf("smartForm").Descendants("title").First().Value;
此要求有一个smartForm元素,其中包含title元素。
如果您想确保smartForm
中的标题元素是直接孩子,您可以使用:
xml.DescendantsAndSelf("smartForm").Elements("title").First().Value;
如果您不关心title
的名称是什么,只想要第一个子元素,那么您将使用:
xml.DescendantsAndSelf("smartForm").Elements().First().Value;
答案 1 :(得分:3)
您想使用Descendants
轴方法,然后调用FirstOrDefault
扩展方法来获取第一个元素。
这是一个简单的例子:
using System;
using System.Linq;
using System.Xml.Linq;
class Program
{
static void Main()
{
String xml = @"<?xml version=""1.0"" encoding=""utf-8"" ?>
<smartForm idCode=""customersMain"">
<title>Customers Main222</title>
<description>Generic customer form.</description>
<area idCode=""generalData"" title=""General Data"">
<column>
<group>
<field idCode=""anrede"">
<label>Anrede</label>
</field>
<field idCode=""firstName"">
<label>First Name</label>
</field>
<field idCode=""lastName"">
<label>Last Name</label>
</field>
</group>
</column>
</area>
<area idCode=""address"" title=""Address"">
<column>
<group>
<field idCode=""street"">
<label>Street</label>
</field>
<field idCode=""location"">
<label>Location</label>
</field>
<field idCode=""zipCode"">
<label>Zip Code</label>
</field>
</group>
</column>
</area>
</smartForm>";
XElement element = XElement.Parse(xml)
.Descendants()
.FirstOrDefault();
}
}
答案 2 :(得分:0)
我的任务是找到指定名字的第一个孩子。 如果xml使用名称空间,而不是
e.Elements(name).FirstOrDefault()
写
e.Elements().FirstOrDefault(i => i.Name.LocalName == name)