<if match></if>
Provided by module: Tags: RXML 2 tags
Evaluates patterns. More information can be found in the
If tags
tutorial. Match is an Eval plugin.
Attributes
- match="pattern"
-
Choose what pattern to test. The pattern could be any expression.
Note! The pattern content is treated as strings. Compare how
<if variable> tag works.
<set variable='var.ten' value='10' />
<if match='&var.ten; is 10'>true</if>
<else>false</else> |
true
|
|