Latest web development tutorials

função toLowerCase (): JSTL fn

JSP Standard Tag Library JSP Standard Tag Library

fn: toLowerCase () para seqüência de todos os caracteres em minúsculas.

gramática

fn: () função sintaxe toLowerCase é a seguinte:

${fn.toLowerCase(<string>)}

Exemplos Demonstração

Os exemplos a seguir demonstram as capacidades desta função:

<%@ 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:toLowerCase(string1)}" />

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

</body>
</html>

Os resultados são como se segue:

字符串为 : i am from w3big

JSP Standard Tag Library JSP Standard Tag Library