Foxtable(狐表)用户栏目专家坐堂 → 读XML的问题


  共有3519人关注过本帖树形打印复制链接

主题:读XML的问题

帅哥,在线噢!
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110495 积分:562359 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2021/5/24 9:32:00 [显示全部帖子]

判断是否包含某个节点

Dim xml As String = "<xml><to>George</to><from>John</from><content>Don't forget the meeting!</content></xml>"
Dim
 xo As Foxtable.XObject = Foxtable.XObject.Parse(xml)
if xo("to") isnot nothing then
Output
.Show(xo("to"))
end if
if xo("to2") isnot nothing then
Output
.Show(xo("to2"))
end if

 回到顶部