English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Bibliothèque de balises standard JSP
La fonction fn:replace() a la syntaxe suivante :
Syntaxe
${fn:replace(<chaîne d'origine>, <chaîne à remplacer>, <chaîne à remplacer par>)}
Voici un exemple qui montre la fonction de ce programme :
<%@ 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="I am from google"/> <c:set var="string2" value="${fn:replace(string1, 'google', 'w3codebox}" /> <p>Chaine de caractères remplacée : ${string2}<//p> </body> </html>
Résultat de l'exécution suivant : :
Chaine de caractères remplacée : I am from w3codebox