位置:海鸟网 > IT > XML >

使用XPath对Xml进行模糊查询

XML怎样进行XmlNode节点的模糊查询呢?可以使用XPath对Xml进行模糊查询。

XML第一种存储方式,使用节点的InnerText存储数据

user1.xml片段如下:

<?xml version="1.0" encoding="utf-8" ?>
<users>
  <user>
    <username>huo</username>
    <password>123</password>
    <createtime>2008-06-17</createtime>
  </user>
</users>

XPath查询XML代码如下:

//等值查询
string xpath = "users/user[username='huo' and password='123']";

//模糊查询
string xpath = "users/user[contains(username,'huo') and contains(password,'123')]";
 

XML第二种存储方式,使用XMl节点属性属性存储数据

user2.xml片段如下:

<users>
  <user username="huo" password="123" createtime="2008-06-17" />
</users>

XPath查询XML代码如下:

//xpath查询如:加"@" 用以查询属性值
//等值查询:
string xpath = "users/user[@username='huo' and @password='123']";

//模糊查询:
string xpath = "users/user[contains(@username,'huo') and contains(@password,'123')]";