<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<c:if test="${fn:length(reply.s_content) > 18}">
<c:out value="${fn:substring(reply.s_content,0,15)}" />...
</c:if>
<c:if test="${fn:length(reply.s_content) <= 18}">
${reply.s_content}
</c:if>
[출처] - http://nsyang-textcube.blogspot.com/2009/12/jstl-%EA%B8%80%EC%9E%90%EC%88%98-%EC%9E%90%EB%A5%B4%EA%B8%B0.html
728x90
'Carpe Programming > jsp & spring & jstl' 카테고리의 다른 글
[jsp] 파일 다운로드 (0) | 2011.09.23 |
---|---|
[Spring] param 값 받기 (0) | 2011.08.29 |
[jstl] jstl과 el로 목록 순번 표시하기 (0) | 2011.08.19 |
[jstl] format 태그사용 - 금액, 날짜, 현재시간, 퍼센트, 숫자표기 (0) | 2011.08.16 |
[jstl] 현재 날짜 구하기 (0) | 2011.08.16 |