Zum Hauptinhalt springen

Evaluate expression

Anatomy

<eval var="var" type="string">
string
</eval>

Description: EVAL evaluates an expression of a given data type.

Attributes

NameTypeDescriptionDefined By
varvarVariable name eval
typetypeData type eval

Results:

BindingTypePredicate
varboolint

Examples

Example

<set var="dollar">$</set>
<set var="name">iXML</set>

<output>
<eval>My name is $dollar$name!</eval>
</output>

<!-- My name is iXML! -->