JSTL函数-fn:endsWith()

fn:endsWith() 函数用于判断输入字符串是否以指定的后缀结尾。如果字符串以指定的后缀结尾,则返回true,否则返回false。

fn:endsWith() 函数的语法为:

boolean endsWith(java.lang.String, java.lang.String) 

让我们看一个简单的示例:

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<html>
<head>
    <title>一点教程网-JSTL函数</title>
</head>
<body>

<c:set var="String" value="Welcome to learn JSTL programming"/>

<c:if test="${fn:endsWith(String, 'programming')}">
    <p>String ends with programming<p>
</c:if>

<c:if test="${fn:endsWith(String, 'JSP')}">
    <p>String ends with JSP<p>
</c:if>

</body>
</html>

运行结果为:

热门文章

优秀文章