el « Character « JSP-Servlet Q&A





1. Generating ordinal characters in JSP EL    stackoverflow.com

Take the following JSP fragment:

<c:forEach items="${items}" varStatus="status">
   ${'A' + status.index}
</c:forEach>
The intent should clear, I'm trying to generate an 'A'-based character index for each iterations through the loop. In Java, ...

2. EL Escape Character?    coderanch.com