boolean fn:startsWith(String sourceStr, String startprefix)其中,sourceStr 表示源字符串,startprefix 是指定的前缀。
boolean fn:endsWith(String sourceStr, String endprefix)其中,sourceStr 表示源字符串,endprefix 是指定的后缀。
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%> <!DOCTYPE html> <html> <head> <title>编程帮(www.lmcjl.com)</title> </head> <body> <c:set var="mymsg" value="Example of JSTL function" /> 字符串以Example开头: ${fn:startsWith(mymsg, 'Example')} <br> 字符串以example开头: ${fn:startsWith(mymsg, 'example')} <br> 字符串以function结尾: ${fn:endsWith(mymsg, 'function')} <br> 字符串以Function结尾: ${fn:endsWith(mymsg, 'Function')} <br> </body> </html>
字符串以Example开头: true
字符串以example开头: false
字符串以function结尾: true
字符串以Function结尾: false
本文链接:http://task.lmcjl.com/news/15789.html