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" %>


	
		fn:containsIgnoreCase JSTL function example
	
	
		

		
		   

String JSTL found in the test string.

String jstl found in the test string.

web.xml


	
  
          test.jsp
  	


Output:

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