AdSense

網頁

2018/1/4

在JSP EL取得子字串

在JSP的EL可使用JSTL的fn:substring()取得子字串

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

<html>
   <body>
      <c:set var="s1" value="helloworld"/>
      <c:set var="s2" value="${fn:substring(s1, 0, 5)}"/>

      <p>${s2}</p>
   </body>
</html>

${s2}會印出hello


參考:

沒有留言:

AdSense