属性名称的C#过滤XML

时间:2018-10-17 14:48:23

标签: c# xml linq

这是我的xml文件

<SW.Blocks.CompileUnit ID="3" CompositionName="CompileUnits">
<AttributeList>
    <NetworkSource>
        <FlgNet xmlns="http://www.siemens.com/automation/Openness/SW/NetworkSource/FlgNet/v2">
            <Parts>
                <Access Scope="GlobalVariable" UId="21">
                    <Symbol>
                        <Component Name="PlantConfigData" />
                        <Component Name="C001" />
                        <Component Name="command" />
                        <Component Name="conveyorGUID" />
                    </Symbol>
                </Access>
                <Access Scope="GlobalVariable" UId="22">
                    <Symbol>
                        <Component Name="PlantConfigData" />
                        <Component Name="C001" />
                    </Symbol>
                </Access>
                <Call UId="23">
                    <CallInfo Name="Conveyor Type C" BlockType="FB">
                        <Instance Scope="GlobalVariable" UId="24">
                            <Component Name="Conveyor Type C_DB" />
                        </Instance>
                        <Parameter Name="GUID" Section="Input" Type="String" />
                        <Parameter Name="Auto_Hand" Section="Input" Type="Bool" />
                        <Parameter Name="Notaus" Section="Input" Type="Bool" />
                        <Parameter Name="Input" Section="Input" Type="typeConveyorDrive" />
                        <Parameter Name="out1" Section="Output" Type="Bool" />
                    </CallInfo>
                </Call>
            </Parts>
            <Wires>
                <Wire UId="29">
                    <OpenCon UId="25" />
                    <NameCon UId="23" Name="en" />
                </Wire>
                <Wire UId="30">
                    <IdentCon UId="21" />
                    <NameCon UId="23" Name="GUID" />
                </Wire>
                <Wire UId="31">
                    <OpenCon UId="26" />
                    <NameCon UId="23" Name="Auto_Hand" />
                </Wire>
                <Wire UId="32">
                    <OpenCon UId="27" />
                    <NameCon UId="23" Name="Notaus" />
                </Wire>
                <Wire UId="33">
                    <IdentCon UId="22" />
                    <NameCon UId="23" Name="Input" />
                </Wire>
                <Wire UId="34">
                    <NameCon UId="23" Name="out1" />
                    <OpenCon UId="28" />
                </Wire>
            </Wires>
        </FlgNet>
    </NetworkSource>
    <ProgrammingLanguage>FBD</ProgrammingLanguage>
</AttributeList>
<ObjectList>
    <MultilingualText ID="4" CompositionName="Comment">
        <ObjectList>
            <MultilingualTextItem ID="5" CompositionName="Items">
                <AttributeList>
                    <Culture>de-DE</Culture>
                    <Text>Bausteinaufruf C001 GUID?</Text>
                </AttributeList>
            </MultilingualTextItem>
        </ObjectList>
    </MultilingualText>
    <MultilingualText ID="6" CompositionName="Title">
        <ObjectList>
            <MultilingualTextItem ID="7" CompositionName="Items">
                <AttributeList>
                    <Culture>de-DE</Culture>
                    <Text>C001</Text>
                </AttributeList>
            </MultilingualTextItem>
        </ObjectList>
    </MultilingualText>
</ObjectList>
</SW.Blocks.CompileUnit>

我想用LINQ过滤所有XElement,它们的属性名称为“ ID”(称为XName ?!)。我不在乎价值。我需要在所有ID元素中写入自己的值(例如1..10,以便下次调用11 ... 20),因为它们必须唯一。

所以有我的主要xml,我将调用上面的xml,更改值,然后将其复制到我的主要xml中。取决于我的设备数量。

我看到了很多示例,这些示例用于过滤值后的值,但没有过滤属性名。

我的代码,直到知道:

var id =
                from el in root.Descendants(nse_type + "SW.Blocks.CompileUnit")
                where // i need to filter?
                select el;

也许更好的方法是使用LINQ获取所有XElement并在foreach()中进行过滤,以更改属性名称为“ ID”的值?

我是初学者,也许它并不那么复杂。非常感谢你!

2 个答案:

答案 0 :(得分:2)

好吧,如果要获取所有具有ID属性的元素,则可以执行以下操作:

var elements= from el in root.Descendants()
              where el.Attribute("ID") != null //This will check if the attribute exist or not              
              select el;

现在,您可以遍历结果以更新属性:

int i=0;
foreach (XElement e in elements)
{
  e.Attribute("ID").Value=(i++).ToString();
}

答案 1 :(得分:1)

就像Rui Jarimba说的那样,您应该对xml进行序列化和反序列化, 我认为您应该在这里找到答案:https://stackoverflow.com/a/14663848/5034209

反序列化之后,可以使用Linq To对象,使用for循环并更改ID。

最后,使用序列化来重新创建xml。

唯一的行为是您的xml与原始xml不同...

您也可以使用Linq to XML来实现:

解析XML

遍历所需元素(使用Linq查询)

更改属性ID(xml.SetAttributeValue(“ UId”,1))

保存XML(xml.Save(“ [fileNameOrStream]”))