up vote 7 down vote favorite
share [g+] share [fb]

I would like to concatenate a string within a ternary operator in EL(Expression Language).

Suppose there is a variable named value. If it's empty, I want to use some default text. Otherwise, I need to append it with some static text.

${(empty value)? "none" : value + " enabled"}

This will not compile however. What would be a correct way to write this? Or is this even possible?

link|improve this question

possible duplicate of JSP EL String concatenation – McDowell May 31 '11 at 14:11
feedback

3 Answers

up vote 6 down vote accepted

There is no string concatenation operator in EL. If you don't need the concatenated string to pass into some other operation, just put these expressions next to each other:

${value}${(empty value)? 'none' : ' enabled'}
link|improve this answer
1  
Oh, that is also a way :) – BalusC Sep 4 '10 at 15:14
feedback

The + operator has not the same effect on Strings in EL as in Java. Best what you can do is to preset it using <c:set>.

<c:set var="enabled" value="${value} enabled" />
<c:out value="${empty value ? 'none' : enabled}" />
link|improve this answer
feedback

1.The +(operator) has not effect to that in using EL. 2.so this is the way,to use that

<c:set var="enabled" value="${value} enabled" />


<c:out value="${empty value ? 'none' : enabled}" />

is this helpful to You ?

link|improve this answer
indent four spaces for code blocks and use the backtick character to escape angle-brackets. stackoverflow.com/editing-help – McDowell Sep 4 '10 at 15:23
feedback

Your Answer

 
or
required, but never shown

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