Latest web development tutorials

fonction substring (): JSTL fn

JSP standard Tag Library JSP standard Tag Library

fn: substring () renvoie une chaîne spécifiée début et la fin de l'indice de sous-chaîne.

grammaire

fn: () syntaxe de la fonction substring est la suivante:

${fn:substring(<string>, <beginIndex>, <endIndex>)}

Exemples Démo

Les exemples suivants démontrent les capacités de cette fonction:

<%@ 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="${fn:substring(string1, 5, 15)}" />

<p>生成的子字符串为 : ${string2}</p>

</body>
</html>

Les résultats sont les suivants:

生成的子字符串为 : is first S

JSP standard Tag Library JSP standard Tag Library