English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

JSTL fn:replace() function

JSP Standard Tag Library

fn:replace() function replaces all specified substrings in a string with another string.

fn:replace() function syntax is as follows:

Syntax

${fn:replace(<Original String>, <String to be Replaced>, <String to Replace With>)}

Example Demonstration

The following example demonstrates the function's functionality:

<%@ 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>Using JSTL Functions</title>
</head>
<body>
<c:set var="string1" value="I am from google"/>
<c:set var="string2" value="${fn:replace(string1, 
                                'google', 'w3codebox}" />
<p>Replaced string: ${string2}<//p>
</body>
</html>

The running result is as follows:

Replaced string: I am from w3codebox

JSP Standard Tag Library