JSTL函数-fn:substringBefore()

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

fn:substringBefore() 函数的语法为:

String fn:substringBefore(String input, String beforestring)  

让我们看一个简单的示例:

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<html>
<head>
    <title>一点教程网-JSTL函数</title>
</head>
<body>

<c:set var="string" value="Hello, This is yiidian.com developed by Eric."/>
${fn:substringBefore(string, "developed")}

</body>
</html>

运行结果为:

热门文章

优秀文章