Función JSTL - fn: length ()

los fn:length() La función devuelve la longitud de la cadena o el número de elementos de una colección.

Sintaxis

los fn:length() La función tiene la siguiente sintaxis:

int length(java.lang.Object)

Ejemplo

El siguiente ejemplo explica la funcionalidad del fn:length() función -

<%@ 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>

Recibirá el siguiente resultado:

Length of String (1) : 21
Length of String (2) : 22