Latest web development tutorials

JSTL의 FN :와 toLowerCase () 함수

JSP 표준 태그 라이브러리 JSP 표준 태그 라이브러리

FN : 모든 문자 문자열와 toLowerCase () 함수는 소문자로.

문법

FN 다음과 같이 () 구문와 toLowerCase 기능은 다음과 같습니다

${fn.toLowerCase(<string>)}

예를 들면 데모

다음의 예는이 함수의 성능을 보여 :

<%@ 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>

결과는 다음과 같습니다 :

字符串为 : i am from w3big

JSP 표준 태그 라이브러리 JSP 표준 태그 라이브러리