XDocument
オブジェクトがあります。 LINQを使用して、任意の深さで特定の名前を持つ要素を照会したい。 Descendants("element_name")
を使用すると、現在のレベルの直接の子である要素のみを取得します。私が探しているのは、XPathの「// element_name」と同等です...XPath
を使用するだけですか、またはLINQメソッドを使用してそれを行う方法はありますか?ありがとう。
子孫は完全に正常に動作するはずです。以下に例を示します。
using System;
using System.Xml.Linq;
class Test
{
static void Main()
{
string xml = @"
<root>
<child id='1'/>
<child id='2'>
<grandchild id='3' />
<grandchild id='4' />
</child>
</root>";
XDocument doc = XDocument.Parse(xml);
foreach (XElement element in doc.Descendants("grandchild"))
{
Console.WriteLine(element);
}
}
}
結果:
<grandchild id="3" />
<grandchild id="4" />
名前空間を示す例:
String TheDocumentContent =
@"
<TheNamespace:root xmlns:TheNamespace = 'http://www.w3.org/2001/XMLSchema' >
<TheNamespace:GrandParent>
<TheNamespace:Parent>
<TheNamespace:Child theName = 'Fred' />
<TheNamespace:Child theName = 'Gabi' />
<TheNamespace:Child theName = 'George'/>
<TheNamespace:Child theName = 'Grace' />
<TheNamespace:Child theName = 'Sam' />
</TheNamespace:Parent>
</TheNamespace:GrandParent>
</TheNamespace:root>
";
XDocument TheDocument = XDocument.Parse( TheDocumentContent );
//Example 1:
var TheElements1 =
from
AnyElement
in
TheDocument.Descendants( "{http://www.w3.org/2001/XMLSchema}Child" )
select
AnyElement;
ResultsTxt.AppendText( TheElements1.Count().ToString() );
//Example 2:
var TheElements2 =
from
AnyElement
in
TheDocument.Descendants( "{http://www.w3.org/2001/XMLSchema}Child" )
where
AnyElement.Attribute( "theName" ).Value.StartsWith( "G" )
select
AnyElement;
foreach ( XElement CurrentElement in TheElements2 )
{
ResultsTxt.AppendText( "\r\n" + CurrentElement.Attribute( "theName" ).Value );
}
次の方法で実行できます。
xml.Descendants().Where(p => p.Name.LocalName == "Name of the node to find")
ここで、xml
はXDocument
です。
プロパティName
は、LocalName
とNamespace
を持つオブジェクトを返すことに注意してください。そのため、名前で比較する場合はName.LocalName
を使用する必要があります。
子孫は必要なことを正確に行いますが、要素の名前とともに名前空間の名前が含まれていることを確認してください。省略した場合、空のリストが表示される可能性があります。
これを達成するには2つの方法があります。
以下は、これらのアプローチの使用例です。
List<XElement> result = doc.Root.Element("emails").Elements("emailAddress").ToList();
XPathを使用する場合、IEnumerableで何らかの操作を行う必要があります。
IEnumerable<XElement> mails = ((IEnumerable)doc.XPathEvaluate("/emails/emailAddress")).Cast<XElement>();
ご了承ください
var res = doc.XPathEvaluate("/emails/emailAddress");
nullポインターが返されるか、結果が返されません。
XmlDocument.SelectNodes
メソッドと同じように機能するXPathSelectElements
拡張メソッドを使用しています。
using System;
using System.Xml.Linq;
using System.Xml.XPath; // for XPathSelectElements
namespace testconsoleApp
{
class Program
{
static void Main(string[] args)
{
XDocument xdoc = XDocument.Parse(
@"<root>
<child>
<name>john</name>
</child>
<child>
<name>fred</name>
</child>
<child>
<name>mark</name>
</child>
</root>");
foreach (var childElem in xdoc.XPathSelectElements("//child"))
{
string childName = childElem.Element("name").Value;
Console.WriteLine(childName);
}
}
}
}
@Francisco Goldensteinの回答に続いて、拡張メソッドを作成しました
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
namespace Mediatel.Framework
{
public static class XDocumentHelper
{
public static IEnumerable<XElement> DescendantElements(this XDocument xDocument, string nodeName)
{
return xDocument.Descendants().Where(p => p.Name.LocalName == nodeName);
}
}
}
上記が真実であることを知っています。ジョンは決して間違っていません。実生活の願いはもう少し先に行くことができます
<ota:OTA_AirAvailRQ
xmlns:ota="http://www.opentravel.org/OTA/2003/05" EchoToken="740" Target=" Test" TimeStamp="2012-07-19T14:42:55.198Z" Version="1.1">
<ota:OriginDestinationInformation>
<ota:DepartureDateTime>2012-07-20T00:00:00Z</ota:DepartureDateTime>
</ota:OriginDestinationInformation>
</ota:OTA_AirAvailRQ>
たとえば、通常、問題は、上記のxmlドキュメントでEchoTokenを取得する方法です。または、attrbuteという名前の要素をぼかす方法。
1-以下のような名前空間と名前でアクセスすることでそれらを見つけることができます
doc.Descendants().Where(p => p.Name.LocalName == "OTA_AirAvailRQ").Attributes("EchoToken").FirstOrDefault().Value
2-属性の内容の値で見つけることができます このような
Linq
クラスのXDocument
およびDescendantsメソッドに基づくソリューションのこのバリアント
using System;
using System.Linq;
using System.Xml.Linq;
class Test
{
static void Main()
{
XDocument xml = XDocument.Parse(@"
<root>
<child id='1'/>
<child id='2'>
<subChild id='3'>
<extChild id='5' />
<extChild id='6' />
</subChild>
<subChild id='4'>
<extChild id='7' />
</subChild>
</child>
</root>");
xml.Descendants().Where(p => p.Name.LocalName == "extChild")
.ToList()
.ForEach(e => Console.WriteLine(e));
Console.ReadLine();
}
}