The JSTL fn:toUpperCase() function returns the input string after converting the all characters of the string to upper case.
Syntax:
String toUpperCase(String inputString)
Example:
test.jsp
<%@ 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>fn:toUpperCase JSTL function example</title> </head> <body> <c:set var="testString" value="Hello this is a JSTL function example."/> Given String: <br/> <c:out value="${testString}" /><br/><br/> String after change case (upper):<br/> <c:out value="${fn:toUpperCase(testString)}" /> </body> </html> |
web.xml
<web-app> <welcome-file-list> <welcome-file>test.jsp</welcome-file> </welcome-file-list> </web-app> |
Output:
Download this example.
Next Topic: JSTL fn:trim() function with example.
Previous Topic: JSTL fn:toLowerCase() function with example.