您当前的位置:首页 > 计算机 > 编程开发 > JSP

fn:substringAfter()函数

时间:01-30来源:作者:点击数:

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

语法

JSP fn:substringAfter() 函数的语法如下。

String fn:substringAfter(String sourceStr, String afterstring)

其中:

  • sourceStr:字符串;
  • afterstring:指定子字符串。

示例

下面为 fn:substringAfter() 函数的简单实例。

<%@ 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.cdsy.xyz)</title>
</head>
<body>
    <c:set var="msg" value="Welcome to cdsy" />
    ${fn:substringAfter(msg, "to")}
</body>
</html>

页面输出内容如下:

cdsy
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门