This function use to split a string into subset of an array.
This Function use to make splitting of string into array substring. This program shows the demo of this function. First we call the syntax library for JSTL Accessing. Then after in body section we declare the variable that contain the stored value and then after declare the function syntax that present the output while execution on the web browser. And in the last we close all the html tags.
fn:split.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:split>In JSTL</title>
</head>
<body>
<center><h3>Example Of JSTL Split Function </h3></center>
<c:set var=”str” value=”This-is-JSP-World” />
<c:set var=”splitstr” value=”${fn:split(str,’-‘)}” />
<c:set var=”joinedstr” value=”${fn:join(splitstr,’ ‘)}” />
<b><center><p>String Before split: ${str}</p>
<b><center><p>String After split and join: ${joinedstr}</p>
</body>
</html>