Latest web development tutorials

JSTL의 FN : substringBefore () 함수

JSP 표준 태그 라이브러리 JSP 표준 태그 라이브러리

FN : substringBefore () 함수는 문자열 지정된 부분의 앞의 문자열을 반환합니다.

문법

FN 다음과 같이 () 구문 substringBefore 기능은 다음과 같습니다

${fn:substringBefore(<string>, <substring>)}

예를 들면 데모

다음의 예는이 함수의 성능을 보여 :

<%@ 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="This is first String."/>
<c:set var="string2" value="${fn:substringBefore(string1, 
                                            'first')}" />

<p>生成的子字符串 : ${string2}</p>

</body>
</html>

결과는 다음과 같습니다 :

生成的子字符串 : This is

JSP 표준 태그 라이브러리 JSP 표준 태그 라이브러리