fn:length()函数
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