uppercase
The uppercase
function is used to convert a string value to uppercase letters
Syntax
c4i:uppercase(str)
Parameters
str
A string or a xpath to a text node
Return value
The string converted to uppercase letters
Example
Given the following STEP XML :
<STEP-ProductInformation>
<Products>
<Product ID="PRD1">
<Name>Test</Name>
</Product>
</Products>
</STEP-ProductInformation>
The following YAML configuration will produce the following output :
c4i:uppercase(Name/text()): name
name: "TEST"