Função JSTL - fn: substringBefore ()

o fn:substringBefore() função retorna a parte de uma string antes de uma substring especificada.

Sintaxe

o fn:substringBefore() função tem a seguinte sintaxe -

java.lang.String substringBefore(java.lang.String, java.lang.String)

Exemplo

O exemplo a seguir explica a funcionalidade do fn:substringBefore() função -

<%@ 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:substringBefore(string1, 'first')}" />
      <p>Final sub string : ${string2}</p>
   </body>
</html>

Você receberá o seguinte resultado -

Final sub string : This is