728x90
728x90
SMALL
fn:replace()
- 입력 문자열에서 "이전" 문자열의 모든 발생을 "후" 하위 문자열로 대체한 결과 문자열을 반환합니다.
Syntax
boolean replace(java.lang.String, java.lang.String, java.lang.String)
Example
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<html>
<head>
<title>JSTL functions replace</title>
</head>
<body>
<c:set var="str1" value="Hello World."/>
<p>${fn:replace(str1, 'Hello', 'Bye')}</p>
</body>
</html>
Result
Bye World.
728x90
728x90
LIST
'JSP > JSTL functions' 카테고리의 다른 글
[JSP][JSTL functions] fn:startsWith() (0) | 2021.07.30 |
---|---|
[JSP][JSTL functions] fn:split() (0) | 2021.07.30 |
[JSP][JSTL functions] fn:length() (0) | 2021.07.26 |
[JSP][JSTL functions] fn:join() (0) | 2021.07.26 |
[JSP][JSTL functions] fn:indexOf() (0) | 2021.07.26 |