JSTL fn:substring() 函数类似于 Java 的 substring 方法,用来返回指定字符串的子字符串。
JSP fn:substring() 函数的语法如下。
String fn:substring(String sourceStr, int start, int end)
其中:
下面为 fn:substring() 函数的简单实例。
<%@ 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"%>
<!DOCTYPE html>
<html>
<head>
<title>城东书院(www.cdsy.xyz)</title>
</head>
<body>
<c:set var="msg" value="Welcome to cdsy" />
${fn:substring(msg, 10,13)}
</body>
</html>
页面输出内容如下: