如何使用 LINQ 选择 XML 文档中包含特定字符串的所有属性

发布于 2024-09-01 00:23:08 字数 405 浏览 5 评论 0原文

类似于 XPath:如何匹配包含特定属性的属性string 但不使用 XPath。是否可以?

<c BarFoo="val1">
   <d Foo="val2" someAttribute="">
      <e FooBar="val3" />
   </d>
</c>

基本上我想选择文档中属性名称包含“Foo”的所有属性值,因此它应该返回“BarFoo”,“FooBar”,“Foo”的值(va1,val2,val3)

Similar to XPath: How to match attributes that contain a certain string but without using XPath. Is it possible?

<c BarFoo="val1">
   <d Foo="val2" someAttribute="">
      <e FooBar="val3" />
   </d>
</c>

Basically I want to select all the attribute values in the document that their attribute name contains "Foo", so it should return the values of "BarFoo", "FooBar", "Foo" (va1, val2, val3)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若能看破又如何 2024-09-08 00:23:26

我的出发点是将 XML 字符串解析为 XElement 对象。

var query = element.DescendantsAndSelf().Attributes()
    .Where(attr => attr.Name.LocalName.Contains("Foo"))
    .Select(attr => new { Name = attr.Name, Value = attr.Value });

其结果是一个匿名类型的 IEnumerable,其中包含每个属性的名称和值。

BarFoo  val1
Foo     val2
FooBar  val3

My starting point is parsing the XML string into an XElement object.

var query = element.DescendantsAndSelf().Attributes()
    .Where(attr => attr.Name.LocalName.Contains("Foo"))
    .Select(attr => new { Name = attr.Name, Value = attr.Value });

The result of that is an IEnumerable of an anonymous type containing each attribute's name and value.

BarFoo  val1
Foo     val2
FooBar  val3
凑诗 2024-09-08 00:23:23

像这样:

elem.DescendantsAndSelf().Attributes().Where(a => a.Name.LocalName.Contains("Foo"))

Like this:

elem.DescendantsAndSelf().Attributes().Where(a => a.Name.LocalName.Contains("Foo"))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文