JSTL fn:containsIgnoreCase() function

The JSTL fn:containsIgnoreCase() function is used to check whether the input string contains the specified string or not by ignoring the case i.e. it is case insensitive. It returns true if input string contains the specified string by ignoring the case otherwise return false.

Syntax:

boolean containsIgnoreCase(String inputString, String specifiedString)

Example:

test.jsp

<%@ 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>fn:containsIgnoreCase JSTL function example</title>
	</head>
	<body>
		<c:set var="testString" 
                          value="Hello this is a JSTL function example."/>
 
		<c:if test="${fn:containsIgnoreCase(testString, 'JSTL')}">
		   <h4>String JSTL found in the test string.</h4>
		</c:if>
 
		<c:if test="${fn:containsIgnoreCase(testString, 'jstl')}">
		   <h4>String jstl found in the test string.</h4>
		</c:if>
	</body>
</html>

web.xml

<web-app>
 
  <welcome-file-list>
          <welcome-file>test.jsp</welcome-file>
  </welcome-file-list>	
 
</web-app>

Output:

jsp example 53   Download this example.   Next Topic: JSTL fn:startsWith() function with example. Previous Topic: JSTL fn:contains() function with example.

 

Please follow and like us:
Content Protection by DMCA.com