Web/JSTL

[JSTL] fn:contains 포함되는 문자열 찾기

roundfigure 2021. 2. 7. 23:54

fn:contains를 사용하여 포함되는 단어를 찾을 수 있다

boolean contains(java.lang.String, java.lang.String)

fn:contains - 포함되는 문자열이 있으면 true를 반환한다

 

taglib 선언

<%@ prefix="c" taglib uri="http://java.sun.com/jsp/jstl/core" %>
<%@ prefix="fn" taglib uri="http://java.sun.com/jsp/jstl/functions" %>

 

fn:contains 예제

<c:set var = "testStr" value = "test string"/>

<c:if test = "${fn:contains(testStr, 'test')}">
	<span>문자열 포함</span>
</c:if>

<c:if test = "${fn:contains(testStr, 'hello')}">
	<span>문자열 미포함</span>
</c:if>

 

'Web > JSTL' 카테고리의 다른 글

[JSTL] list 길이 구하기(length)  (0) 2021.02.07
[JSTL] parseDate, formatDate 날짜 형식 변경  (0) 2021.02.07
[JSTL] 현재 날짜 구하기 예제  (0) 2021.02.07
[JSTL] JSTL?  (0) 2021.01.13