JSTL - fn:length() 函数



fn:length() 函数返回字符串长度或集合中的项目数量。

语法

fn:length() 函数的语法如下 −

int length(java.lang.Object)

示例

以下示例说明了 fn:length() 函数的功能 −

<%@ 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>Using JSTL Functions</title>
   </head>

   <body>
      <c:set var = "string1" value = "This is first String."/>
      <c:set var = "string2" value = "This is second String." />
      <p>Length of String (1) : ${fn:length(string1)}</p>
      <p>Length of String (2) : ${fn:length(string2)}</p>
   </body>
</html>

你将收到以下结果 −

Length of String (1) : 21
Length of String (2) : 22
jsp_standard_tag_library.htm
广告