This Function Checks that the Placed String Contains the Sub string or Not.
This Program will show the execution of <fn: contains> function that will bring the output in True or False mode if it will find the substring in string will output ‘TRUE’ otherwise ‘FALSE’. First in the program we declare syntax of library function. After that we declare the variables that contain the value that is been given in it. After declaring the function as required we close all the custom tags of Html In the last instance.
fn:Contains.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:Contains> In JSTL</title>
</head>
<body>
<center><br /><strong><p><c:out value=”${fn:contains(‘JavaServerPages’, ‘ver’)}”></c:out>
</body>
</html>