fn:substringBefore()函数

JSTL fn:substringBefore() 函数用来返回字符串中指定子字符串前面的部分。

语法

JSP fn:substringBefore() 函数的语法如下。
String fn:substringBefore(String sourceStr, String beforestring)
其中:
  • sourceStr:字符串;
  • beforestring:指定子字符串。

示例

下面为 fn:substringBefore() 函数的简单实例。
<%@ 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"%>
<!DOCTYPE html>
<html>
<head>
<title>编程帮(www.biancheng.net)</title>
</head>
<body>
    <c:set var="msg" value="bianchengbang is a tutorial website" />
    ${fn:substringBefore(msg, "is")}
</body>
</html>

页面输出内容如下:

bianchengbang