I have in velocity a variable which its value is null. I don't want to display anything in this case.
Is there a way I could do this directly? Why is detecting "" as null ?
#set ( $a = "")
#if ($a)
assert("never prints a neither gets here: " + $a)
#end
I'd like to be able to make something like:
This is the variable $a. ## in case that $a is null i don't want 'dollar a' to be displayed