Latest web development tutorials

JSTL fn:length()函數

JSP 標準標籤庫 JSP標準標籤庫

fn:length()函數返回字符串長度或集合中元素的數量。

語法

fn:length()函數的語法如下:

${fn:length(collection | 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="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>

運行結果如下:

字符串长度 (1) : 21

字符串长度 (2) : 22

JSP 標準標籤庫 JSP標準標籤庫