Latest web development tutorials

função length (): JSTL fn

JSP Standard Tag Library JSP Standard Tag Library

fn: comprimento () devolve o comprimento da corda ou o número de elementos na coleção.

gramática

fn: () função de duração da sintaxe é a seguinte:

${fn:length(collection | 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="This is first String."/>
<c:set var="string2" value="This is second String." />

<p>字符串长度 (1) : ${fn:length(string1)}</p>
<p>字符串长度 (2) : ${fn:length(string2)}</p>


</body>
</html>

Os resultados são como se segue:

字符串长度 (1) : 21

字符串长度 (2) : 22

JSP Standard Tag Library JSP Standard Tag Library