Delete Element
Deletes XML element.
This activity deletes a specific XML element from the given XML
Input
Input:
String ArgumentRequiredInput the XML.Location:
String ArgumentRequiredInput the location of the element to be deleted.Index:
Integer ArgumentSpecifies the index from which the element is to be deleted. Used with ModeAtIndex.Mode: Select the method where the element is to be deleted. These are the available options.
First(default)- Deletes the first occurrence of a specified XML elementAtIndex- Deletes the occurrence of the specified XML element at the specified index.All- Deletes all the occurrences of the specified XML element.
Output
Result:
String VariableStores the updated the XML after the element deletion in the specified String variable
Last updated