<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<html>
<head>
<title>Example of fn:length tag of JSTL</title>
</head>
<body>
<form method="POST">
This will calculate the length of specified string.
<table>
<tr>
<td>Enter String</td>
<td><input type="text" name="text"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="calculate"></td>
</tr>
</table>
</form>
<c:if test="${pageContext.request.method=='POST'}">
<c:set var="text" value="${param.text}"/>
<font size="5" color="#1B2A0A">
Length :
</font>
<font size="5" color="green">
<c:out value="${fn:length(text)}"/>
</font>
</c:if>
</body>
</html>
|