Jsp jstl表达式中是否包含指定字符串
引入:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
语法:
<c:if test="${fn:contains(“后台传来的数据”, “指定要包含的字符串”)}">
...
</c:if>
示例:
<c:forEach items="${page.list}" var="batchRecord" varStatus="index">
<c:if test="${fn:contains(batchRecord.sheetcode,'P')}">
<a href="xxx"> ${batchRecord.sheetcode} </a>
</c:if>
<c:if test="${fn:contains(batchRecord.sheetcode,'BL')}">
<a href="xxx">${batchRecord.sheetcode}</a>
</c:if>