I have ${stub} = 2@3# and ${levels} = [1, 2, 3, 4]
I would like to do something like
resulting inCode:<c:forEach var="level" items="${levels}"> <c:out value="${stub}${level}"/> </c:forEach>
- 2@3#1
2@3#2
2@3#3
2@3#4
I've tried every(?) possible combination. Is String concat without any blankspace possible in JSTL?


Reply With Quote