Latest web development tutorials

fonction de la longueur (): JSTL fn

JSP standard Tag Library JSP standard Tag Library

fn: longueur () renvoie la longueur de la chaîne ou le nombre d'éléments de la collection.

grammaire

fn: () fonction de la longueur de la syntaxe est la suivante:

${fn:length(collection | string)}

Exemples Démo

Les exemples suivants démontrent les capacités de cette fonction:

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

Les résultats sont les suivants:

字符串长度 (1) : 21

字符串长度 (2) : 22

JSP standard Tag Library JSP standard Tag Library