Latest web development tutorials

JSTL función fn: longitud ()

JSP Standard Tag Library JSP Standard Tag Library

fn: longitud () devuelve la longitud de la cadena o el número de elementos de la colección.

gramática

fn: () la función de longitud sintaxis es la siguiente:

${fn:length(collection | string)}

Los ejemplos de demostración

Los siguientes ejemplos demuestran las capacidades de esta función:

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

Los resultados son como sigue:

字符串长度 (1) : 21

字符串长度 (2) : 22

JSP Standard Tag Library JSP Standard Tag Library