JSTL fn:endsWith() function

The JSTL fn:endsWith() function is used to check whether the input string is ends with the specified string or not. It returns true if input string is ends with the specified string otherwise return false.

Syntax:

boolean endsWith(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:endsWith JSTL function example
	
	
		

		
		   

String ends with example

web.xml


	
  
          test.jsp
  	


Output:

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