fn:contains()和fn:containsIgnoreCase()函数

JSTL fn:contains() 函数用于判断一个字符串是否包含指定的字符串,区分大小写。fn:containsIgnoreCase() 函数与 fn:contains() 函数作用相同,fn:containsIgnoreCase() 函数不区分大写。

语法

JSP fn:contains() 函数语法如下:
boolean fn:contains(String sourceStr, String testStr)
其中,sourceStr 表示源字符串,testStr 为指定字符串。

fn:containsIgnoreCase() 函数的语法如下:
boolean fn:containsIgnoreCase(String sourceStr, String testStr)
其中,sourceStr 表示源字符串,testStr 为指定字符串。

示例

下面为 fn:containsIgnoreCase() 与 fn:contains() 函数的简单实例。
<%@ 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.biancheng.net)</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 我来自编程帮!