本文介绍了在VB.net中删除Xml标记的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好我的名字是leandro,我有一个问题。
Hi my name is leandro and i have one question .
我有一个xml文件... >
i have one xml file with ... >
<?xml version="1.0" encoding="utf-8"?>
<Config>
<BlockUrl>
<Item>http://69.36.226.110;Users</Item>
<Item>http://69.36.226.150;Users</Item>
<Item>http://69.36.226.175;Users</Item>
<Item>http://69.36.226.189;Users</Item>
<Item>http://64.92.172.107;Users</Item>
<Item>http://216.129.112.85;Users</Item>
<Item>http://216.129.112.86;Users</Item>
<Item>http://216.129.112.116;Users</Item>
</BlockUrl>
<BlockIp>
<item>192.168.0.158</item>
<item>192.168.0.159</item>
<item>192.168.0.160</item>
<item>192.168.0.161</item>
<item>192.168.0.162</item>
</BlockIp>
</Config>
推荐答案
Dim xmlFile = XDocument.Load("xmlfile1.xml")
Dim querylst = xmlFile...<BlockIp>.FirstOrDefault()
querylst.Remove()
xmlFile.Save("xmlfile1.xml")
这篇关于在VB.net中删除Xml标记的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!