我有包含表格的XML。我需要删除代码为B的表(只有一个B)。
<Tables>
<Table>
<Name>My Name</Name>
<Code>A</Code>
</Table>
<Table>
<Name>His Name</Name>
<Code>B</Code>
</Table>
</Tables>
我尝试了这个,但它不起作用..
<Tables xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<Table xdt:Locator="XPath(//Tables/Table/Code[text()='B'])" xdt:Transform="Remove"/>
</Tables>
需要帮助。 感谢。