kantorn
Aug 19th, 2004, 07:58 AM
I have ${stub} = 2@3# and ${levels} = [1, 2, 3, 4]
I would like to do something like
<c:forEach var="level" items="${levels}">
<c:out value="${stub}${level}"/>
</c:forEach>
resulting in
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?
I would like to do something like
<c:forEach var="level" items="${levels}">
<c:out value="${stub}${level}"/>
</c:forEach>
resulting in
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?