使用c sharp查找和替换XML中标记的值

时间:2017-11-16 16:15:16

标签: c# xml xelement

<TestCase Name="DEBUG">

<ActionEnvironment Name="Carved records indication">
    <Define Name="_TestedVersionPath"         Value="{CustomParam {paramName=PA tested version installer folder path}, {appName=PA installer}, {hint=\\ptnas1\builds\Temp Builds\Forensic\Physical Analyzer\PA.Test\UFED_Analyzer_17.02.05_03-00_6.0.0.128\EncryptedSetup}}"/>
    <Define Name="_PathOfdata"                Value="SharedData\myfolder\mydata.xml"/>
    <ActionSet Name="DEBUG">    
        <Actions>                                                   
            <SpecialAction ActionName="myactionname">
                <CaseName>123</CaseName>
                <UaeSendQueryValues>
                    <URL>192.168.75.133</URL>
                    <RestURL></RestURL>
                    <UserName>user1</UserName>
                    <Password>aaa</Password>
                    <PathOfQuery>_PathOfdata</PathOfQuery>
                    <Method>GET</Method>
                    <ParamsFromFile></ParamsFromFile>
                </UaeSendQueryValues>                                       
            </SpecialAction>
        </Actions>          
    </ActionSet>    
</ActionEnvironment>    

我有上面的xml。我需要找到每个PathOfQuery标记,获取它的文本(在示例_PathOfdata中),然后在xml树中找到第一个定义标记,其名称=到PathofQuery标记的文本并获取其值(在示例中) SharedData \ MyFolder中\ mydata.xml“)

然后我想用另一个字符串替换该值。

我需要为xml中出现的每个PathofQuery标记执行此操作(它可能多于一个)并且我想在我旅行时始终找到Define标记的第一个幻像(可能不止一个)从找到PathofQuery标记的位置开始。

我想在C Sharp上做这件事

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

我们假设string s拥有上述Xml。然后,以下代码将适用于您:

    XmlDocument xDoc = new XmlDocument();
    xDoc.LoadXml(s);

    XmlNode pathOfQuery = xDoc.SelectSingleNode("//PathOfQuery");
    string pathOfQueryValue = pathOfQuery.InnerText;
    Console.WriteLine(pathOfQueryValue);
    XmlNode define = xDoc.SelectSingleNode("//Define[@Name='" + pathOfQueryValue + "']");
    if(define!=null)
    {
        string defineTagValue = define.Attributes["Value"].Value;
        Console.WriteLine(defineTagValue);

        pathOfQuery.InnerText = defineTagValue;

        Console.WriteLine(pathOfQuery.InnerText);
    }