JSTL - función fn: substring ()

los fn:substring() La función devuelve un subconjunto de una cadena especificada por índices de inicio y fin.

Sintaxis

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

java.lang.String substring(java.lang.String, int, int)

Ejemplo

El siguiente ejemplo explica la funcionalidad del fn:substring() 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 = "${fn:substring(string1, 5, 15)}" />

      <p>Final sub string : ${string2}</p>
   </body>
</html>

Recibirá el siguiente resultado:

Final sub string : is first S