在使用EL的时候,不可避免的遇到,截取字符串,判断字符串长度等情况。这里给出简单的通过fn函数操作字符串的deamon。
1、页面引入标签
1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> |
2、对内容的处理
1 | <c:choose><c:when test='${fn:length(dutyLog.content) >= 100}'>${fn:substring(dutyLog.content,0,100)}...</c:when><c:otherwise>${dutyLog.content}</c:otherwise></c:choose> |
1 | //获取dutyLog.content的对应长度; |
特此记录,以待下次使用。