[jstl] fmt_rt와 function의 사용
* fmt_rt
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt_rt" %>
<fmt:formatNumber value="${resultMap.mileageSum}" pattern="###,###,###" />
* functions
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
${fn:length(coupons)}
${fn:replace(fn:escapeXml(resultMap.faq.contents),newLineChar,'<br />')}
${fn:substring(list.regDay,0,10)}
${fn:replace(fn:escapeXml(QNA[0].CONTENT),newLineChar,'<br />')}
<c:set var="email_ary" value="${fn:split(member.email,'@')}" />
[jstl] fmt_rt와 function의 사용
'programming > jstl' 카테고리의 다른 글
[jstl] c:when and or (0) | 2014.10.01 |
---|---|
[jstl] List 배열 jstl로 보여주기 (0) | 2013.12.19 |
[jstl] c:forEach 에서 , 구분자로 보여주기 (0) | 2013.12.04 |
[jstl] 작고 크고 비교하기 (0) | 2013.10.02 |
[jstl] c:choose c:otherwise 선택하기 (1) | 2013.08.22 |