|
top
|
 Subject: problem with Conditional Expressions Author: (Deleted User) Date: 30 Apr 2010 12:52 PM
|
Hi Karen,
I hope my Spanish is good enough to understand the question...
If you want to concatenate several strings, it's just enough to do a long
concat($varExpression, $param1, $param2, $param3)
If they are empty, it's just like you didn't specify them as part of the concatenation.
In case you want to test for special values, you can add if() statements around the arguments, like in
concat($varExpression, if($param1!="xxx") then $param1 else (), if($param2!="xxx") then $param2 else (), if($param3!="xxx") then $param3 else ())
Hope this helps,
Alberto
|
|
|
|