boolean fn:contains(String sourceStr, String testStr)其中,sourceStr 表示源字符串,testStr 为指定字符串。
boolean fn:containsIgnoreCase(String sourceStr, String testStr)其中,sourceStr 表示源字符串,testStr 为指定字符串。
<%@ 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="sourceStr" value="I am from BIANCHENG" /> <c:if test="${fn:contains(sourceStr, 'biancheng')}"> fn:contains 我来自编程帮! </c:if> <c:if test="${fn:containsIgnoreCase(sourceStr, 'biancheng')}"> fn:containsIgnoreCase 我来自编程帮! </c:if> </body> </html>
fn:containsIgnoreCase 我来自编程帮!
本文链接:http://task.lmcjl.com/news/17034.html