Concatenate
Anatomy
<concat var="var">
string
</concat>
Description: CONCAT concatenates a value to a variable.
Attributes
| Name | Type | Description | Defined By |
|---|---|---|---|
| var | var | Variable name | concat |
Results:
| Binding | Type | Predicate |
|---|---|---|
| var | string | N/A |
Examples
Example
<set var="name">i</set>
<concat var="name">XML</concat>
<output>$name</output>
<!-- iXML -->