15

给定以下xml:

<rootnode>
   <childnode arg="a">Content A</childnode>
   <childnode arg="b">Content A</childnode>
</rootnode>

XMLPoke与以下 XPath 一起使用:

rootnode/childnode[arg='b']

结果(如果替换字符串为空)是:

<rootnode>
   <childnode arg="a">Content A</childnode>
   <childnode arg="b"></childnode>
</rootnode>

当我们真正想要删除子节点本身时,子节点的内容已被删除。期望的结果是:

<rootnode>
   <childnode arg="a">Content A</childnode>
</rootnode>

必须根据 childnode 参数选择子节点。

4

2 回答 2

26

我举手!这是一个问错问题的经典案例。

问题是您不能使用xmlpoke删除单个节点。Xmlpoke只能用于编辑特定节点或属性的内容。根据仅使用标准Nant目标的问题,没有一种优雅的方法可以删除子节点。可以使用 Nant 中的属性使用一些不雅的字符串操作来完成,但是为什么要这样做呢?

最好的方法是编写一个简单的 Nant 目标。这是我之前准备的一个:

using System;
using System.IO;
using System.Xml;
using NAnt.Core;
using NAnt.Core.Attributes;

namespace XmlStrip
{
    [TaskName("xmlstrip")]
    public class XmlStrip : Task
    {
        [TaskAttribute("xpath", Required = true), StringValidator(AllowEmpty = false)]
        public string XPath { get; set; }

        [TaskAttribute("file", Required = true)]
        public FileInfo XmlFile { get; set; }

        protected override void ExecuteTask()
        {
            string filename = XmlFile.FullName;
            Log(Level.Info, "Attempting to load XML document in file '{0}'.", filename );
            XmlDocument document = new XmlDocument();
            document.Load(filename);
            Log(Level.Info, "XML document in file '{0}' loaded successfully.", filename );

            XmlNode node = document.SelectSingleNode(XPath);
            if(null == node)
            {
                throw new BuildException(String.Format("Node not found by XPath '{0}'", XPath));
            }

            node.ParentNode.RemoveChild(node);

            Log(Level.Info, "Attempting to save XML document to '{0}'.", filename );
            document.Save(filename);
            Log(Level.Info, "XML document successfully saved to '{0}'.", filename );
        }
    }
}

将上述内容与对NAnt.exe.config文件的修改相结合,以在构建文件中加载自定义目标和以下脚本:

<xmlstrip xpath="//rootnode/childnode[@arg = 'b']" file="target.xml" />

这将从 target.xml 中删除带有参数arg值为b的子节点。这是我最初真正想要的!

于 2009-02-11T23:36:31.063 回答
2

xmlpeek只读取值。 xmlpoke只设置值。不幸的是,nant 没有xmldelete任务。

我通过在一个 nant 文件中创建一个 nant 解决了这个问题,<target />我可以轻松地在项目之间重用。

我选择利用 nant的内置<regex /><echo />和任务。<include /><call />

好处:

  • 适用于正则表达式(参见缺点)。
  • 可以匹配任何文本,包括 XML!

缺点:

  • 你曾经用正则表达式解决过问题吗?如果是,那么你现在有另一个问题!
  • 必须转义nant 文件中的正则表达式值!(使用在线 xml 转义器工具)。
<!-- This file should be included before being called -->
<project name="YourProject">

    <target name="RemoveLineFromFile">

        <loadfile 
            file="${delete.from.file.path}" 
            property="xml.file.content" />
        <property 
            name="delete.from.file.regex" 
            value="(?'BEFORE'[\w\s\W]*)\&lt;add.*key=\&quot;AWSProfileName\&quot;.*value=\&quot;comsec\&quot;.*\/\&gt;(?'AFTER'[\w\s\W]*)" />
        <regex 
          input="${xml.file.content}" 
          pattern="${delete.from.file.regex}" />
        <echo 
          file="${delete.from.file.path}"
          message="${BEFORE}${AFTER}"
          append="false" />

    </target>

</project>

下面是如何包含和调用这个目标。请记住,所有参数都是全局的,必须在调用目标之前定义。

  • delete.from.file.path:要修改的文件的路径。
  • delete.from.file.regex:匹配要删除的内容的正则表达式(并定义 BEFORE 和 AFTER 组)。
<project name="YourProject">

    <include buildfile="path\to\nant\target\RemoveLineFromFile.build"/>

    <target name="OtherWork">

        <property name="delete.from.file.path" value="path\to\xml\file.xml" />
        <property name="delete.from.file.regex" value="(?&apos;BEFORE&apos;[\w\s\W]*)\&lt;childnode.*arg=&quot;b&quot;&gt;(.*?)\&lt;\/childnode\&gt;(?&apos;AFTER&apos;[\w\s\W]*)" />
        <call target="RemoveLineFromFile" />

    </target>

</project>

于 2019-08-13T15:00:46.093 回答