JSTL - fn: função toUpperCase ()

o fn:toUpperCase() função converte todos os caracteres de uma string em maiúsculas.

Sintaxe

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

java.lang.String tolowercase(java.lang.String)

Exemplo

O exemplo a seguir explica a funcionalidade do fn:toUpperCase() 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:toUpperCase(string1)}" />

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

Você receberá o seguinte resultado -

Final string : THIS IS FIRST STRING.