JSTL fn:subStringAfter() function

The JSTL fn:subStringAfter() function returns a sub string of the input string after a specified string.

Syntax:

Strung subStringAfter(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:substringAfter JSTL function example
	
	
		
		Given String: 


Substring After Hello:

web.xml


	
  
          test.jsp
  	


Output:

jsp example 62
 
Download this example.

Related Topics:

 
Next Topic: JSTL fn:subStringBefore() function with example.
Previous Topic: JSTL fn:subString() function with example.