使用 linq 在 xml 中搜索

发布于 2024-08-08 14:13:40 字数 449 浏览 4 评论 0原文

我想在 xml 文件中搜索。这是我的 linq 句子。

string _sSemptom  = "try";
XElement xe =  from c in xdSemptom.Elements().Elements().Elements()
                         .Elements().Attributes("Isim")
               where c.Value.Length >= _sSemptom.Length &&
                     c.Value.Contains(_sSemptom)
               select c.Parent

我可以通过这种方式找到 XElement,但如果 _sSemptom 是“Try”,我就找不到它。如何使用大小写变化进行搜索?

感谢您的帮助。

I want to searching in a xml file. this is my linq sentece.

string _sSemptom  = "try";
XElement xe =  from c in xdSemptom.Elements().Elements().Elements()
                         .Elements().Attributes("Isim")
               where c.Value.Length >= _sSemptom.Length &&
                     c.Value.Contains(_sSemptom)
               select c.Parent

I can find the XElement that way, but if _sSemptom is "Try" I can't find it. How can I search using upper and lower case variations?

Thanks for your helps.

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

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

发布评论

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

评论(1

说不完的你爱 2024-08-15 14:13:40

编辑:实际上,事实证明没有 StringComparison 重载 Contains()。您可以使用 IndexOf() 代替:

c.Value.IndexOf(_sSemptom, StringComparison.OrdinalIgnoreCase) > -1

Edit: Actually, it turns out there isn't a StringComparison overload for Contains(). You can use IndexOf() instead:

c.Value.IndexOf(_sSemptom, StringComparison.OrdinalIgnoreCase) > -1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文