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" %> <html> <head> <title>fn:substringAfter JSTL function example</title> </head> <body> <c:set var="testString" value="Hello this is a JSTL function example."/> Given String: <br/> … Read more