fn:toLowerCase() Function
The fn:toLowerCase()
function converts all characters in a string to lowercase.
Syntax
The syntax of the fn:toLowerCase()
function is as follows:
${fn.toLowerCase(<string>)}
Example Demonstration
The following example demonstrates the function's functionality:
<%@ 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>Using JSTL Functions</title>
</head>
<body>
<c:set var="string1" value="I am from tutorialpro"/>
<c:set var="string2" value="${fn:toLowerCase(string1)}" />
<p>String is : ${string2}</p>
</body>
</html>
The output is as follows:
String is : i am from tutorialpro