使用 xpath 和 c# 是否可以忽略大小写?
只是想知道在搜索 xml 文档时是否可以使用 c# 和 xpath 忽略大小写?
Just wondered if its possible to ignore case with c# and xpath when searching an xml document?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
XPath 区分大小写。
如果您允许名称中字符的任意大小写组合(错误的决定!),成功处理此问题的 XPath 表达式可能如下所示:
XPath is case sensitive.
If you would allow any case combination of characters in a name (bad decision!), an XPath expression successfully dealing with this might look like:
坏消息是 Xpath 区分大小写,但是有一些方法可以解决这个问题。请查看以下 MSDN 博客:
http:// blogs.msdn.com/b/shjin/archive/2005/07/22/442025.aspx
The bad news is that Xpath is case sensitive, however there are ways to get around this. Have a look at the following MSDN blog:
http://blogs.msdn.com/b/shjin/archive/2005/07/22/442025.aspx