Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのJSTLステートメントを使用しています...
<c:forEach var="i" begin="1" end="5"> <c:out value="${i}"/> </c:forEach>
結果は次のとおりです。
1 2 3 4 5
出力行の空白を避ける簡単な方法はありますか? 次のような出力が見たいです。
12345
<c:forEach var="i" begin="1" end="5"><c:out value="${i}"/></c:forEach>
または単に
<c:forEach var="i" begin="1" end="5">${i}</c:forEach>