Delete Element

Object to delete an element from the XML file

This object depends of other objects: Import XML, Select Element

Settings

Field

Descriptive

Title

Object Title

Select Main Object

Select a XML object for this operation

Add Element

Adds a new element field

Element

Elemento XML no qual deseja remover, caso XML element that you want to find. If it has attributes, separate them with space. If you want to validate the attribute value, do: root id=2

Example

Original File:

<?xml version="1.0" encoding="utf-8"?>
<root id="1">
    <tabela id="tabela1">
        <nome>João da Silva</nome>
        <idade>26</idade>
        <telefone>123322333</telefone>
    </tabela>
</root>

File after deleting the element

<?xml version="1.0" encoding="utf-8"?>
<root id="1">
    <tabela id="tabela1">
        <idade>26</idade>
        <telefone>123322333</telefone>
    </tabela>
</root>

Last updated

Was this helpful?