f_atencia 0 Junior Poster in Training

Say I have the following XML:

<People>
    <Group id="1">
        <Person FirstName="Bob" Surname="The Builder"/>
        <Person FirstName="Jane" Surname="Doe"/>
    </Group>
    <Group id="2">
        <Person FirstName="Billie" Surname="Jean"/>
    </Group>
</People>

How can I update Group 1 dynamically by replacing it from an imported xml file (for this sake, we'll store it in a variable called $ImportXML)?

<People>
    <Group id="1">
        <Person FirstName="Donald" Surname="Duck"/>
        <Person FirstName="Daisy" Surname="Duck"/>
        <Person FirstName="Mickey" Surname="Mouse"/>
        <Person FirstName="Minnie" Surname="Mouse"/>
    </Group>
    <Group id="2">
        <Person FirstName="Billie" Surname="Jean"/>
    </Group>
</People>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.