JSTL fn:contains()函数

Posted Henu丶雨巷

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSTL fn:contains()函数相关的知识,希望对你有一定的参考价值。

fn:contains() 函数判断一个输入字符串是否包含一个指定的子串。

语法

使用 fn:contains() 函数具有以下语法:

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

例子:

下面是例子来说明这个函数的功能:

 

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<html>
<head>
<title>Using JSTL Functions</title>
</head>
<body>

  <c:set var="theString" value="I am a test String"/>

  <c:if test="${fn:contains(theString, ‘test‘)}">
     <p>Found test string<p>
  </c:if>

  <c:if test="${fn:contains(theString, ‘TEST‘)}">
     <p>Found TEST string<p>
  </c:if>

</body>
</html>

这将产生以下输出结果:

Found test string

以上是关于JSTL fn:contains()函数的主要内容,如果未能解决你的问题,请参考以下文章

JSP JSTL入门 - JSTL函数和自定义函数

jstl:fn

JSTL标签库学习3-fn

JSTL中foreach与fn表达式

Jsp中使用EL表达式对字符串进行操作

EL 表达式截取字符串/替换字符/……