码迷,mamicode.com
首页 > 其他好文 > 详细

总结-EL表达式

时间:2016-11-14 15:24:04      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:items   el表达式   stl   cas   表达式   tostring   字符串   color   for   

<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>


1 字符串连接

    ${"abc".concat("123")}

2 split

    <c:forEach items="${fn:split(‘1,2,3‘, ‘,‘)}" var="str"></c:forEach>

3 length

    ${fn:length("abc")}

    ${fn:length(fn:split("a,b,c", ","))}

4 substring

    ${fn:substring("abc", 0, fn:length("abc"))}

5 contains

    ${fn:contains("abc", "a")} (containsIgnoreCase)

    不能用于数组、集合(用于数组、集合时,会用对象toString后的字符串来执行,显然不准确)

6 replace

    ${fn:replace("abbc", "b", "B")}

总结-EL表达式

标签:items   el表达式   stl   cas   表达式   tostring   字符串   color   for   

原文地址:http://www.cnblogs.com/liaolongjun/p/6061653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!