JSP/JSTL functions

[JSP][JSTL functions] fn:indexOf()

지니★ 2021. 7. 26. 13:37
728x90
728x90
SMALL

 


 

fn:indexOf()

  • 지정된 하위 문자열이 처음으로 나타나는 문자열이 있는 인덱스를 반환합니다.

 

Syntax

int indexOf(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 indexOf</title>
    </head>
    <body>
        <c:set var="str" value="Hello World."/>

        <p>index : ${fn:indexOf(str, 'Hello')}</p>
        <p>index : ${fn:indexOf(str, 'World')}</p>
   </body>
</html>

 

Result

index : 0
index : 6

 


 

728x90
728x90
LIST