?
? ????? PHP ??? ???? ??? ?? ??
fn:length()函數(shù)返回字符串長度或集合中元素的數(shù)量。
fn:length()函數(shù)的語法如下:
int length(java.lang.Object)
以下實例演示了這個函數(shù)的功能:
<%@ 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>
運行結(jié)果如下:
Length of String (1) : 21 Length of String (2) : 22
關于我們 聯(lián)系我們 留言板
手冊網(wǎng)