Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question
2  
You might find the following Velocity wiki page interesting: Checking for null. Also check out $null check in velocity – Xavi López Sep 4 '12 at 12:46

1 Answer

up vote 4 down vote accepted

$!a does the trick. You can use this form directly without an if check.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.