...
Code Block |
---|
- transform: AppendToAttribute xpath: //contains_JobObject[@stageType]/@name appendString: _I_AM_STAGE - transform: PrependToAttribute xpath: //contains_JobObject[@stageType]/@name prependString: MY_NAME_IS_ |
Transforms
Transform | Description | Parameters |
---|---|---|
AppendToAttribute | Append a string value to an attribute. |
...
| |
PrependToAttribute | Prepend a string value to an attribute. |
Parameters:
| |
SearchAndReplace | Perform a regex search/replace on a text node (i.e. attribute or element with |
...
text content). If an element with child elements is provided by the xpath, the |
...
child elements will all be removed by this operation. |
Parameters:
| |
InsertElement | Adds an XML element as a child to a specified parent element. |
Parameters:
| |
InsertAttribute | Adds an attribute to an XML element. If the attribute already exists it will be |
...
overwritten. |
Parameters:
| |
RemoveElement | Removes an XML element from the document. |
...
| ||
RemoveAttribute | Removes an attribute from an existing element. | Parameters:
|
Recipes
Change prefetch memory
...