在JSTL中使用字符串處理函數


因為在jsf要用到jstl標簽,這里做有效的整理。在使用這些函數之前必須在JSP中引入標准函數的聲明

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

下面是JSTL中自帶的方法列表以及其描述

 

函數名 函數說明 使用舉例
 contains 判斷字符串是否包含另外一個字符串 <c:if test="${fn:contains(name, searchString)}">
 containsIgnoreCase 判斷字符串是否包含另外一個字符串(大小寫無關) <c:if test="${fn:containsIgnoreCase(name, searchString)}">
 endsWith 判斷字符串是否以另外字符串結束 <c:if test="${fn:endsWith(filename, ".txt")}">
 escapeXml 把一些字符轉成XML表示,例如<字符應該轉為&lt; ${fn:escapeXml(param:info)}
 indexOf 子字符串在母字符串中出現的位置 ${fn:indexOf(name, "-")}
 join 將數組中的數據聯合成一個新字符串,並使用指定字符格開 ${fn:join(array, ";")}
 length 獲取字符串的長度,或者數組的大小 ${fn:length(shoppingCart.products)}
 replace 替換字符串中指定的字符 ${fn:replace(text, "-", "&#149;")}
 split 把字符串按照指定字符切分 ${fn:split(customerNames, ";")}
 startsWith 判斷字符串是否以某個子串開始 <c:if test="${fn:startsWith(product.id, "100-")}">
 substring 獲取子串 ${fn:substring(zip, 6, -1)}
 substringAfter

獲取從某個字符所在位置開始的子串

${fn:substringAfter(zip, "-")}
 substringBefore 獲取從開始到某個字符所在位置的子串 ${fn:substringBefore(zip, "-")}
 toLowerCase 轉為小寫 ${fn.toLowerCase(product.name)}
 toUpperCase 轉為大寫字符 ${fn.UpperCase(product.name)}
 trim 去除字符串前后的空格 ${fn.trim(name)}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM