Latest web development tutorials

JSTL fn: remplacer () fonction

JSP standard Tag Library JSP standard Tag Library

fn: fonction de remplacement () à la chaîne toute la chaîne spécifiée est remplacée par une autre chaîne.

grammaire

fn: () syntaxe remplacer la fonction est la suivante:

${fn:replace(<原始字符串>, <被替换的字符串>, <要替换的字符串>)}

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="I am from google"/>
<c:set var="string2" value="${fn:replace(string1, 
                                'google', 'w3big')}" />

<p>替换后的字符串 : ${string2}</p>


</body>
</html>

Les résultats sont les suivants ::

替换后的字符串 : I am from w3big

JSP standard Tag Library JSP standard Tag Library