I often have cases when a string value is absent and/or empty. Is this the best way to test this condition?
#if( $incentive.disclaimer && $!incentive.disclaimer != '' )
$incentive.disclaimer
#end
|
I often have cases when a string value is absent and/or empty. Is this the best way to test this condition?
|
|||||
|
|
For cases where just
|
|||
|
|
|
If you just want Velocity to display the value if there, or display nothing if absent, a quiet reference by itself will do the trick:
If you're wanting to explicitly test for empty, StringUtils from Apache Commons Lang can help. First add it to your Context (reference here):
Though if you're on an older version of Velocity, it may not like the class reference, so you can add an instance instead:
Then you can call its isEmpty method from your Velocity template:
If you want whitespace treated as empty, there's also isBlank. |
|||
|
|