English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Bibliothèque de balises standard JSP
fn:substringBefore()函数返回一个字符串中指定子串前面的部分。
Syntaxe
${fn:substringBefore(<string>, <substring>)}
L'exemple suivant montre la fonction de ce fichier :
<%@ 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>Utilisation des fonctions JSTL</title> </head> <body> <c:set var="string1" value="This is first String."/> <c:set var="string2" value="${fn:substringBefore(string1, 'first'}" /> <p>Le sous-chaîne généré : ${string2}<//p> </body> </html>
Résultat de l'exécution ci-dessous :
Le sous-chaîne généré : This is