Latest web development tutorials

JSTL fn:substringAfter()函數

JSP 標準標籤庫 JSP標準標籤庫

fn:substringAfter()函數返回字符串中指定子串後面的部分。

語法

fn:substringAfter()函數的語法如下:

${fn:substringAfter(<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:substringAfter(string1, 'is')}" />

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

</body>
</html>

運行結果如下:

生成的子字符串 : is first String.

JSP 標準標籤庫 JSP標準標籤庫