Following example explains the functionality of the fn:length() function −
<%@ 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>Using JSTL Functions</title> </head> <body> <c:set var = "string1" value = "This is first String."/> <c:set var = "string2" value = "This is second String." /> <p>Length of String (1) : ${fn:length(string1)}</p> <p>Length of String (2) : ${fn:length(string2)}</p> </body> </html>
You will receive the following result −
Length of String (1) : 21 Length of String (2) : 22
'Jquery, HTML' 카테고리의 다른 글
숫자만 입력가능 할수있는 input 박스 만들기 (0) | 2018.01.30 |
---|