Latest web development tutorials

JSTL fn: toUpperCase () function

JSP Standard Tag Library JSP Standard Tag Library

fn: toUpperCase () function takes a string of all characters to uppercase.

grammar

fn: () syntax toUpperCase function is as follows:

${fn.toUpperCase(<string>)}

Examples Demo

The following examples demonstrate the capabilities of this function:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ 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>使用 JSTL 函数</title>
</head>
<body>

<c:set var="string1" value="I am from w3big"/>
<c:set var="string2" value="${fn:toUpperCase(string1)}" />

<p>字符串为 : ${string2}</p>

</body>
</html>

Results are as follows:

字符串为 : I AM FROM w3big

JSP Standard Tag Library JSP Standard Tag Library